Replies: 3 comments
-
|
Examples welcome! |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
I don't know if this is the case, but using the supabaseClient composable, I only needed to do this arrangement. export const useLogOutMutation = defineMutation(() => {
const client = useSupabaseClient();
return useMutation({
key: ["logout"],
mutation: () => client.auth.signOut(),
});
}); |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Hi, is there a benefit of using both? For me it seems like there is only a layer of complexity more with no benefit. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I think it could be nice to have a example with Supabase, as it's widely used as PaaS
Beta Was this translation helpful? Give feedback.
All reactions