Jens Duttke
Jens Duttke
> Could you tell me more about your use case? Why do they have this CSP in place? Some Browser extensions and internet providers injects code into websites, which sometimes...
> I heard about this practice of ISPs with HTTP websites, but I thought it isn't working anymore with HTTPS websites. Especially for ISPs, I had this problem indeed only...
Sorry, I've just realized that it's similar to the problem in #450 (regarding the `operator-no-unspaced` rule), I've reported yesterday. This issue also only occur if the function call is wrapped...
I assume this ticket refers to the tiny-toolbar issue also mentioned (with screenshot) in #3150 . I've just discovered Notepad3 and installed it on my MS Surface 7 Pro tablet....
Thanks for this hint! This indeed fixes the size of the icons. Wouldn't it make sense to activate such an option by default? The icons as well as the menu...
v6 has been released now. Are there any news to this issue?
> Have you tried: > > `import ImageResizer from 'react-native-image-resizer'` Then you'll get the error: `Module 'react-native-image-resizer' has no default export.` That's simply because the type definition, which is part...
@pstanton: Make sure to set `allowSyntheticDefaultImports` to `false` in your tsconfig.json
@PierreCapo Instead of default exporting an object with properties (where the object is ImageResizer.default then), the export could looks like: ``` export const createResizedImage = (...) => { ... };...