samuba
samuba
I'm using the `supabase/seed.sql` file for this which I populate regularly using `pg_dump` as a npm task. You can also have an npm task for `supabase stop` which executes the...
Those are great! I added them except for @crikey/stores-svelte. Can you explain in a short sentence what this one brings to the table? Okay, It's a drop in replacement, but...
Got it working in the end via GIT_ASKPASS variable and a corresponding script: https://github.com/codeforamerica/git-jekyll-preview/blob/master/askpass.py
Have the same problem with sveltekit build in adapter-vercel phase. I was able to narrow it done to one import that is causing this: import { serverTimestamp } from "firebase/firestore";...
I came up with a workaround with less moving parts, inspired by @johanneskares workaround : ```typescript const { data, error } = await supabase.from("items") .select(`*, talent:talent_id( username, avatar )`,) .eq("content_id",...
Whoopsie, thanks for pointing it out. 😅 I corrected my answer
I came up with a workaround. But Oh boy is it ugly 💩 ```ts editor?.blocks.renderFromHTML(value.replaceAll('', '##br##')); await sleep(100); const temp = await editor?.save()!; for (const block of temp.blocks) { if...
I see, thank you. Definitely worth to add this to the documentation. Would using safe navigation operator in transforms not enable this? Looks to me like a better trade off...
Maybe we are using it wrong then, would love to get your opinion on it. It seems to be broken in multiple usages in our app. The codesandbox should be...