feat: pseudo-login

This commit is contained in:
2025-04-14 21:01:33 +03:00
parent 7f80f4790d
commit ae9bea6c7c
5 changed files with 12 additions and 3 deletions

5
src/utils/converter.ts Normal file
View File

@@ -0,0 +1,5 @@
export const stringToBoolean = (value: string | null): boolean => {
if (value === "true") return true;
if (value === "false") return false;
return false;
};