format codebase with prettier
This commit is contained in:
@@ -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");
|
||||
},
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user