rename method

This commit is contained in:
Zamitto 2024-06-16 22:19:36 -03:00
parent 63e74648c4
commit 16f862d389
4 changed files with 6 additions and 6 deletions

View file

@ -112,7 +112,7 @@ declare global {
restartAndInstallUpdate: () => Promise<void>;
/* Authg */
signout: () => Promise<void>;
signOut: () => Promise<void>;
onSignIn: (cb: () => void) => () => Electron.IpcRenderer;
onSignOut: (cb: () => void) => () => Electron.IpcRenderer;

View file

@ -5,13 +5,13 @@ import { setUserAuth } from "@renderer/features";
export function useUserAuth() {
const dispatch = useAppDispatch();
const [isLoading, setIsLoading] = useState(false);
const [isLoading, setIsLoading] = useState(true);
const { userAuth } = useAppSelector((state) => state.userAuth);
const signOut = useCallback(async () => {
dispatch(setUserAuth(null));
return window.electron.signout();
return window.electron.signOut();
}, [dispatch]);
const updateUserAuth = useCallback(async () => {