Jason Lampel
Jason Lampel
@brettandrew your solution worked for me, although maybe you are using class components? FYI to anyone getting errors about `this` , here is the functional component version I used: ```jsx...
Not sure if this is your problem, but you're missing a `'` before the semicolon: ```ts import * as csvtojson from 'csvtojson; ``` Should be: ```ts import * as csvtojson...
...which still doesn't work 😆 But this does: ```ts import csvtojson from 'csvtojson'; ```
Same issue here. ## So far I have tried: * Pointing the `$ref` to a a relative path in the project root using `./spec.json` * Pointing the `$ref` to a...
Not ideal but this seems to work: ```ts import type { ScaleLinear } from '@nivo/scales' type CustomLineLayerProps = Omit & { xScale: ScaleLinear // 👈 change if needed. I know...
That snippet from @wallaceturner got me 95% of the way, but for anyone getting warnings from these rules:  ...this silenced TS for my eslint/typescript config: ```typescript declare module 'filefy'...
It works for me, but if there are only two markers in the area then the line is very short. Here I have it set to `"magenta"` and it's partially...