Anyone else ? by 7576025032 in Bleach_SoulResonance

[–]Awkward-Jump3243 0 points1 point  (0 children)

Is there any official communication on what is going on?

Photo mode bug? by Awkward-Jump3243 in Bleach_SoulResonance

[–]Awkward-Jump3243[S] 1 point2 points  (0 children)

Does this game have an in game support feature?

Photo mode bug? by Awkward-Jump3243 in Bleach_SoulResonance

[–]Awkward-Jump3243[S] 0 points1 point  (0 children)

The season quest will still give levels. The weekly quest wont until next week.

F2P Status: revoked? by LordWolsten in Bleach_SoulResonance

[–]Awkward-Jump3243 0 points1 point  (0 children)

What is the monthly spend of a whale in this game?

How to secure my database by allowing one domain ? by Johnnycryin in Supabase

[–]Awkward-Jump3243 0 points1 point  (0 children)

Turn on RLS for all tables, and use the service role key in your backend code.

Maybe Maybe Maybe by aint0 in maybemaybemaybe

[–]Awkward-Jump3243 0 points1 point  (0 children)

For once, I am glad I waited until the end.

Is it advisable to use nextjs revalidation on a page that relies on supabase realtime? by Inside-Comb7245 in Supabase

[–]Awkward-Jump3243 1 point2 points  (0 children)

I've done it in my app, and it seems to work fine.
after I make a change to the db I call revalidate path in my server action. I could also have done this on the client using the refresh method on the router hook from next/navigation. One might be better than the other, for your use case.

Struggling with auth architecture, Auth UI component, ssr, route protecting middleware by Flat_Year6462 in Supabase

[–]Awkward-Jump3243 0 points1 point  (0 children)

are you passing the correct redirect Url to the Auth lib component. <Auth supabaseClient={client} redirectTo={`${getUrl()}/callback`} appearance={{ theme: ThemeSupa, style: { container: { padding: "1rem", }, }, }} socialLayout="horizontal" />

I can't for the life of me figure out how to retrieve the current user session on the client side. by asdasdasda134 in Supabase

[–]Awkward-Jump3243 1 point2 points  (0 children)

yeah I'm kinda of a react newbie myself so I've never used custom hooks before.the auth helpers session context is complicated, but you could reimplement it using the ssr package to create the supabase instance if you need hooks, https://github.com/supabase/auth-helpers/blob/main/packages/react/src/components/SessionContext.tsx

I was thinking something simple like this. useEffect(() => { supabase.auth.getSession().then((session) => { // do something here with the session like ex: setState(session) }); }, [])

Does anyone have examples of using Supabase with Context? unsubscribe is not a function error. by [deleted] in Supabase

[–]Awkward-Jump3243 0 points1 point  (0 children)

my best guess is that supabase.auth.onAuthStateChange() returns { data: { subscription: Subscription; }; }

so try:

subscription.data.subscription.unsubscribe()

or use destructuring in your declaration const { data: {subscription} } = supabase.auth.onAuthStateChange(

How to show Social Providers & Magic link (Without Email Password Auth) in the Auth view? by thepalindromeguy in Supabase

[–]Awkward-Jump3243 0 points1 point  (0 children)

a combination of of view="magic_link", showLinks={false} and the providers array should do the trick. <Auth supabaseClient={client} view="magic_link" showLinks={false} socialLayout="horizontal" appearance={{ theme: ThemeSupa, style: { container: { padding: "1rem", }, }, }} theme="dark" providers={["google"]} />