Lawrence Witt

Results 9 comments of Lawrence Witt

Seems very odd that this was never a feature. I thought maybe I could toggle stop/start by changing `avgTypingDelay` to be a very high number, but the previous delay is...

Would be really nice to get this merged here as well for projects not refitted with the toolkit...

The config I ended up using: ``` const config: Config.InitialOptions = { preset: 'ts-jest', testEnvironment: 'jsdom', transform: { 'node_modules/(react-dnd|dnd-core|@react-dnd|react-dnd-html5-backend)/.+\\.(j|t)sx?$': 'ts-jest', }, transformIgnorePatterns: [ 'node_modules/(?!react-dnd|dnd-core|@react-dnd|react-dnd-html5-backend)', ], }; ``` It was also...

I'm also running into this issue with inline workers in IE11. Changing the URL revocation in `inline.js` to the following fixes it in my use case: `setTimeout(function() { URL.revokeObjectURL(objectURL) });`

I'm running into this. It seems like the issue comes from passing a new `options` object. The React component for this lib is just a wrapper around the core which...

No errors, no, it just writes what appears to be the same file to the new location. Have changed the read function to `myJimp.read()` and get the same result. I...

Out of curiosity I installed the circle and fisheye plugins to see if it was something with my config causing the problem and they both work fine. Reinstalled the shadow...

@vinigaviraghi worth mentioning that for this to work you must supply all the variables you require for the query, if the query takes any: ``` const [add_emergency_contact] = useMutation(ADD_EMERGENCY_CONTACT, {...

I'd like to second this. I get `DOMException: The user aborted a request` when trying to run inline Audio Worklets in Chromium browsers without specifying the mimetype. It makes sense...