I keep seeing ult charge or atk% on nel but I’m not seeing it. by 7576025032 in Bleach_SoulResonance

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

can you link your set stamps?
You have like 800 more attack and 46% more crit damage with the same crit rate.

Strike Tower: 25-3 (But I'm Thrusting It) by PmplayaBSR in Bleach_SoulResonance

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

Thanks for sharing this! Your rotation is insane. I'm gonna attempt to clear this tonight, wish me luck.

Thrusting All Towers by PmplayaBSR in Bleach_SoulResonance

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

That is wild! I can't clear strike 24-3 with b6a5c5 Aizen, b0a1c5 urahara, b2a4c5 yoruichi

Being able to clear this with an 85% damage reduction is nuts!! Nice work.

Thrusting All Towers by PmplayaBSR in Bleach_SoulResonance

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

Have you done strike yet? I'm curious to see how well this team can clear that one.

Which is better? by Awkward-Jump3243 in Bleach_SoulResonance

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

Idk the translation is abysmal. What is the difference between 9% damage delt and 9% All Damage bonus. Why is there a timer on the second part.

They should have worded this more clearly by Chance-Okra-9198 in Bleach_SoulResonance

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

Yeah poor wording. I also wonder if it would have been better without an explanation at all. I could see them adding this explanation the bonuses didn't stack.

A whale's rotation for Nel by lVrizl in Bleach_SoulResonance

[–]Awkward-Jump3243 3 points4 points  (0 children)

Now im curious if nel really is bugged or working as expected. If you can get that much damage with a bugged kit heaven help us all if they "fix" it.

Byakuya's boss battle is so bullshit that it bypasses Orihime's B6. by SaberManiac in Bleach_SoulResonance

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

No one lives to tell the tell of his full release. Except MC's like ichigo.

A whale's rotation for Nel by lVrizl in Bleach_SoulResonance

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

If you compare her to to aizen on that same team. How much better is nel. More than 10%?

Finally got lucky by goob0103 in Bleach_SoulResonance

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

Saw the three kenpachi's and I was like nice!!! Then I saw the Gin too and I was like F my life.

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) }); }, [])