diff --git a/client/lib/mock-auth.ts b/client/lib/mock-auth.ts index 2e555030..e500a6b3 100644 --- a/client/lib/mock-auth.ts +++ b/client/lib/mock-auth.ts @@ -238,6 +238,10 @@ class MockAuthService { return this.profiles.get(userId) || null; } + getAllProfiles(): MockProfile[] { + return Array.from(this.profiles.values()); + } + async updateProfile( userId: string, updates: Partial,