async profile()

in src/azurechat/features/auth/auth-api.ts [18:24]


        async profile(profile) {
          const newProfile = {
            ...profile,
            isAdmin: adminEmails?.includes(profile.email.toLowerCase())
          }
          return newProfile;
        }