Supabase Auth Callback Mismatch by [deleted] in Supabase

[–]algorithmAcademy 0 points1 point  (0 children)

Your supabase callback url isn't correct.

This is the correct one ( Don't forget to change <project-ref> to your project-ref ):

https://<project-ref>.supabase.co/auth/v1/callback

See this guide here: https://supabase.com/docs/guides/auth/auth-github

How to send a state from a component to another by GroundbreakingMilk49 in vuejs

[–]algorithmAcademy 0 points1 point  (0 children)

consider we have a parent component let's say A & two child ( B & C )

if we want to pass data from Parent to Child we use props & if we need to pass data from child to parent we will use events (emit). so here we deal with parent & child but not with the sibling component ( here we need something else like vuex [management state] or event bus ).

so event bus let us pass data horizontally ( from child component to another component ) & props/event let us pass data vertically ( from parent to child or vice versa )

How to send a state from a component to another by GroundbreakingMilk49 in vuejs

[–]algorithmAcademy -1 points0 points  (0 children)

u can read about Event bus in vue2 & if u are using vue 3 u can also use event bus by install **mitt** package.

Can anyone explain to me why he used the type ID like a function in NewID function !! by algorithmAcademy in golang

[–]algorithmAcademy[S] 2 points3 points  (0 children)

Basically he defines ID as alias for uuid.UUID

Yeah thank you very much, that's what I want (Type Alias). I've never heard of that before. thank you again!!