remove useless styles, format with biomejs

This commit is contained in:
Stef-00012 2025-02-08 21:36:49 +01:00
parent 626f025e2c
commit 4ff541d05f
No known key found for this signature in database
GPG key ID: 28BE9A9E4EF0E6BF
89 changed files with 4810 additions and 5168 deletions

View file

@ -17,9 +17,9 @@ export function get(key: string): string | null {
export async function del(key: string): Promise<boolean> {
try {
await SecureStore.deleteItemAsync(key);
return true;
} catch(e) {
} catch (e) {
return false;
}
}