Evgenii Perminov
Evgenii Perminov
> could you try this > > $: query = createQuery({ queryKey: [], queryFn: () => fetch(`https://jsonplaceholder.typicode.com/posts/${post}`).then((x) => x.text()), keepPreviousData: true }); > > setting the query key to be...
> Hi guys. I think the issue you're having is explained in #5682. Use stores instead of reactive query declaration and let me know. See new svelte doc for V5...
@MoritzKronberger yup, did something very similar ```ts let id: string; let prevData: Chat; $: chatQuery = createQuery({ queryFn() { return getChat(id); }, queryKey: ["chat", id], placeholderData: prevData, }); // ?....
@MoritzKronberger but react also does reassignments essentially on each rerender and it doesn't seem to cause any issues.
> this issue looks a bit stale. please let me know how to proceed here. Otherwise I'll close it as a known limitation because the workaround seems to be "Using...
I would also suggest moving `clearTimeout` above the guard clause - because we always want to cancel the timeout when trying to start a new one. https://github.com/radix-ui/primitives/blob/be208ef8ce3f24b6616d916688ee1e4812d5e0e3/packages/react/toast/src/Toast.tsx#L510-L512 Say I had...
@HerringtonDarkholme running the command also gives nothing. Btw I could fix the error by just wrapping `className` in `{}` so it's not a critical problem for me. VSCode extension -...
Also using `tree-sitter` for node directly has the same issue so maybe the error is outside of ast-grep scope - I'm curious why it works in the playground though
@HerringtonDarkholme yeah, sure, I will submit it to them Thanks to yours example I could trim down the repro to this ```tsx const A = () => ( ); export...
I've tried to run this with tree-sitter CLI directly and it also doesn't have this problem :| I'm not sure where I should submit this problem at this point