Replies: 2 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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