diff --git a/client/contexts/AuthContext.tsx b/client/contexts/AuthContext.tsx index 54f459f6..f587ebc7 100644 --- a/client/contexts/AuthContext.tsx +++ b/client/contexts/AuthContext.tsx @@ -1126,8 +1126,8 @@ export const AuthProvider: React.FC<{ children: React.ReactNode }> = ({ }, [user]); const profileCompletedByData = useMemo( - () => checkProfileComplete(profile), - [profile], + () => checkProfileComplete(profile, roles), + [profile, roles], ); const localOnboardingComplete =