format codebase with prettier

This commit is contained in:
2026-01-04 16:17:36 +01:00
parent 77f15b6dd1
commit e3f7a778c7
63 changed files with 786 additions and 542 deletions

View File

@@ -1,5 +1,5 @@
import { create } from 'zustand';
import { User } from '@caldav/shared';
import { create } from "zustand";
import { User } from "@caldav/shared";
interface AuthState {
user: User | null;
@@ -15,12 +15,12 @@ export const useAuthStore = create<AuthState>((set) => ({
token: null,
isAuthenticated: false,
login: (_user: User, _token: string) => {
throw new Error('Not implemented');
throw new Error("Not implemented");
},
logout: () => {
throw new Error('Not implemented');
throw new Error("Not implemented");
},
setToken: (_token: string) => {
throw new Error('Not implemented');
throw new Error("Not implemented");
},
}));