Christian Pannwitz
Christian Pannwitz
In Addition to the fix by @FP2K-Minske and @daniel-asilva (both fixes applied), I had to restart daemon and dhcpcd: ``` sudo systemctl daemon-reload sudo systemctl restart dhcpcd ``` afterwards, because...
Aside from that, there's also [React-App-Rewired](https://github.com/timarney/react-app-rewired), which might help you, adding Webpack and Babel things without ejecting.
I just had the same problem, seems like sortablejs can't create the appropriate data tags on a slot (`data-draggable="true"`). Workaround would be to create an additional component in the slot:...
Are there any updates, or working workarounds, to this situation? Our Github Action looks a bit like this, and fails with the before mentioned error: ``` - name: Checkout Code...
Yeah, tried it. Got it to work, essentially by not using the Github Action, but the Docker Container instead. ``` - name: Lint container using Dockle uses: docker://goodwithtech/dockle:v0.4.14 with: args:...
Any news on this topic? No issues for git and VSCode, like the one above mentioned. Freshly installed this extension.
Hey @psteinroe , started the integration here: https://github.com/cpannwitz/supabase-cache-helpers/tree/feature/add-vue-query-package First thing I noticed is that the `@tanstack/vue-query` lib doesn't export the type `UseQueryResult`. ([see here](https://github.com/psteinroe/supabase-cache-helpers/blob/feefb6232fe6b1ad8445fcf7a3618028a8cf96c9/packages/postgrest-react-query/src/query/use-query.ts#L10)) Do you perhaps know, if this...
Ah, thanks, I guess that works. Still, the return type of the `useQuery` function doesn't work yet, but I'll fiddle around and try to get it into working state. There...
@psteinroe So far I've managed to add packages `postgrest-vue-query` and lately `storage-vue-query`. What's missing: - fix type error [here](https://github.com/cpannwitz/supabase-cache-helpers/blob/d6dbc782b6054322a73d3061733819d8f99ded25/packages/postgrest-vue-query/src/query/use-query.ts#L139) - adapt tests to use `@testing-library/vue` - make sure, that it...
Short update: managed to convert all tests (did not run them yet). Main blockers currently are the type error mentioned in the previous post, which I am yet unable to...