Sou Mizobuchi
Sou Mizobuchi
This is probably the easiest way to integrate algolia to an OSS documentation site and probably this project can be listed on docsearch's homepage. https://docsearch.algolia.com
Something like this might work? ```swift extension ViewImageConfig { public static let iPhone11 = ViewImageConfig.iPhoneXr } ``` I'm ok without iPhone 11 series since they are equivalent to other devices....
Downgrading `react` and `react-dom` to `17.0.2` solved the issue for me. Maybe it's not nextjs but react 18 that is causing this? Can anyone else confirm? I'm using ``` "algoliasearch":...
I must've got by with raw query. https://typeorm.io/data-source-api ```ts const rawData = await dataSource.query(`SELECT * FROM USERS`) ``` https://typeorm.io/entity-manager-api ```ts const rawData = await manager.query(`SELECT * FROM USERS`) ``` I'm...
> You can use [sinon fake-timers](https://github.com/sinonjs/fake-timers) for this. > > To do so: > > 1. Install sinon: `npm install sinon` > 2. Setup a `beforeEach` hook that injects `sinon`...
Nope. I'm using `@inject` instead.
> delete the `@types/qs` section from yarn.lock and run `yarn` again In addition, I had to remove `node_modules` and clear yarn cache. ```sh rm -rf node_modules yarn cache clean yarn...
We need this. Some components are referencing [`Fade.defaultProps`](https://github.com/search?q=repo%3Areactstrap%2Freactstrap%20Fade.defaultProps&type=code), but `Fade.defaultProps` is `undefined`. I get the warning when I use `Toast`. ``` Warning: Failed prop type: The prop `timeout` is marked...