diff --git a/02_ProjectOrientedSessions/Session07/Session07 Frontend.md b/02_ProjectOrientedSessions/Session07/Session07 Frontend.md index cc07927..5d2fd3d 100644 --- a/02_ProjectOrientedSessions/Session07/Session07 Frontend.md +++ b/02_ProjectOrientedSessions/Session07/Session07 Frontend.md @@ -1,6 +1,6 @@ # Branching - - [ ] Create the feature/authentication branch based on develop +- [ ] Create the feature/authentication branch based on develop # Adding Models Create three files inside this folder: @@ -61,7 +61,7 @@ import {create} from 'zustand'; interface User {   phoneNumber: string; -  roles: any; +  roles: string[]; } @@ -161,7 +161,7 @@ This defines the overall structure of the authentication store: ## 🔹 Zustand Store Definition ```ts -export const useAuthStore = create((set) => ({ +export const useAuthStore = create((set) => ({ ... }); ``` Creates a global auth store using Zustand. `create()` accepts a function that receives `set` (used to update state) and returns the initial store state and methods.