chore: linting

This commit is contained in:
zhom
2026-03-28 20:55:10 +04:00
parent 248927ae6f
commit d0e3e15fd3
61 changed files with 1179 additions and 835 deletions
+2 -2
View File
@@ -30,14 +30,14 @@ export function useCloudAuth(): UseCloudAuthReturn {
}, []);
useEffect(() => {
loadUser();
void loadUser();
const unlistenExpired = listen("cloud-auth-expired", () => {
setAuthState(null);
});
const unlistenChanged = listen("cloud-auth-changed", () => {
loadUser();
void loadUser();
});
return () => {