fix eslint config

This commit is contained in:
Nathaniel Tampus
2023-05-12 19:23:00 +08:00
parent e990ed9f57
commit c71ee3056d
7 changed files with 17 additions and 8 deletions

View File

@@ -11,7 +11,9 @@ export const fetchSession = async () => {
const user: User = await res.json();
return user;
}
} catch (err) {}
} catch (err) {
// do nothing
}
};
export const setGuestSession = async (name: string) => {