In the use-sign-out.ts file, the use of query client has been removed and error handling has been improved during sign-out operations. Meanwhile, in the use-auth-change-listener.ts file, an unnecessary usage of query client and router has been removed. Event handling logic has also been simplified by using window.location.reload() instead of router.refresh() on user sign-out.
14 lines
263 B
TypeScript
14 lines
263 B
TypeScript
import { useMutation } from '@tanstack/react-query';
|
|
|
|
import { useSupabase } from './use-supabase';
|
|
|
|
export function useSignOut() {
|
|
const client = useSupabase();
|
|
|
|
return useMutation({
|
|
mutationFn: () => {
|
|
return client.auth.signOut();
|
|
},
|
|
});
|
|
}
|