Ramsay Lanier
Ramsay Lanier
I specifically have this problem when trying to test a local mutation. ```js it("should update SearchText when the TextField is changed", async () => { let apolloClient const wrapper =...
For all who have a problem with the Ctrl + E command not working on PC, you can change the shortcut in Chrome. Go to chrome://extensions/shortcuts in your browser; there...
> Would be nice if it were configurable. It is (through Chrome!). Go to chrome://extensions/shortcuts and you can change the shortcut that verticaltabs uses!
Im also running into this issue. I have a main layout.jsx that fetches user posts to display in a sidebar using `onGet`, and then a `pages/[slug]` route that fetches individual...
I'm seeing something similar to this using 0.12.1. When using `useStyleScoped$` and an external .css file, I'm not seeing updates when I add classes to my css. Im importing css...
👍 happens to me too
does it work if you add an `onPending` handler that returns an empty tag?
I don't know if this works for your use case but I believe putting the `App` declaration inside the `LexicalPlayground` component will solve your qwik error. I'm running into a...
I think named endpoints, something like `useEndpoint('/products')` would solve a lot of the data fetching problems. To your delete example, I agree that using the endpoints is clunky. If I'm...
My experience is that you'll get a 404 on the client. Maybe I'm mis-understanding the issue, but here is a reproduction as I see it: https://stackblitz.com/edit/qwik-starter-bgt8fn?file=src/routes/page/[slug]/index.tsx