Jonathan Gamble
Jonathan Gamble
Maybe related - https://github.com/PostgREST/postgrest/discussions/2933
I'm using SvelteKit, but it doesn't matter which Framework you use, as you cannot call `getSession` first due to the [_saveSession](https://github.com/supabase/auth-js/blob/master/src/GoTrueClient.ts#L2033) problem mentioned above. If there is no session, you...
Did you look at the core code and do you see the problem? Are you using `getSession` before `getUser`? I can make a repo if necessary, but all you have...
I will check my repo when I get home from work. However, if there is a logged-in user, why are you still seeing the logs unless it is fixed? If...
> Yep, it logs multiple times for me. But only when there's a user logged in. I just checked my app on my home project, and it seems I jumped...
https://stackoverflow.com/questions/46215559/quill-image-resize-for-angular-2-quill-module/61299733#61299733
I just came across this error. The examples are incorrect on the main site. Should this be there?
Got it working with `rsvg_wasm`: ```ts import { createCanvas, loadImage } from "https://deno.land/x/canvas/mod.ts"; import { render } from "https://deno.land/x/resvg_wasm/mod.ts"; const svgImage = `...`; const canvas = createCanvas(1600, 900); const ctx...