Vitaly Yerofeyevsky

Results 6 comments of Vitaly Yerofeyevsky

> Also it seems MV3 based extensions with service worker are not supported, e.g. Firefox [doesn't support](https://blog.mozilla.org/addons/2022/05/18/manifest-v3-in-firefox-recap-next-steps/) service workers in extensions yet. As a workaround, you can create two manifests,...

As for adding words, vscode extension also supports dictionaries Example: ![2022-09-11_14-53](https://user-images.githubusercontent.com/1577569/189529608-56787f96-63a4-4374-99a6-06452646e502.png)

Yes, `useQuery` returns some [helper functions like fetchMore, updateQuery...](https://github.com/trojanowski/react-apollo-hooks/blob/e590e8f21f1ae4871d641d9681f7932433c8daca/src/useQuery.ts#L136) ```javascript const { fetchMore } = useQuery(QUERY) ```

Now in react-dom [v16.9.0-alpha.0](https://github.com/facebook/react/releases/tag/v16.9.0-alpha.0) act works with async functions: ```javascript await act(async () => { await waitForNextTick(); ... }) ```

Ok, I have found a way to handle this by using the throttleFilter (or debounceFilter) from vueuse. ```typescript useWebExtensionStorage(key, initial, { eventFilter: throttleFilter(200) }) ```

I have a lot of notes with titles that contain quotes and I have recently noticed this issue when I was trying to export notes in JSON format ``` zk...