diff --git a/src/lib/auth.tsx b/src/lib/auth.tsx index b49428c..e833eed 100644 --- a/src/lib/auth.tsx +++ b/src/lib/auth.tsx @@ -2,7 +2,7 @@ import { createContext, useContext, useEffect, useState, type ReactNode } from " import type { Session, User } from "@supabase/supabase-js"; import { supabase } from "@/integrations/supabase/client"; -export type AppRole = "admin" | "attorney" | "staff"; +export type AppRole = "admin" | "attorney" | "paralegal" | "legal_clerk" | "staff"; interface AuthState { session: Session | null;