You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.../node_modules/@supabase/ssr/dist/main/cookies.js:238
cookie = allCookies?.find(({ name }) => name === chunkName) || null;
^
TypeError: allCookies?.find is not a function
IMPORTANT: The error is solved if adding an additional optional chaining operator to the supabase source, as in allCookies?.find?.(. Not sure if there's any underlying issue, though.
Bug report
Describe the bug
I'm getting an error on line
ssr/src/cookies.ts
Line 190 in 549fe62
IMPORTANT: The error is solved if adding an additional optional chaining operator to the supabase source, as in
allCookies?.find?.(
. Not sure if there's any underlying issue, though.To Reproduce
This is how I'm creating the client:
The
Cookies.parseSSR
bit is in accordance with Quasar SSR instructions.Screenshots
System information
Additional context
This error happens both during development with Vite, and in production when running Node.js
The text was updated successfully, but these errors were encountered: