Merge branch 'cl/romantic-mendel-5a2c25' into cl/hexclave-pr3

This commit is contained in:
BilalG1 2026-05-26 16:22:06 -07:00 committed by GitHub
commit 870c5b27c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -71,7 +71,7 @@ export class _StackServerAppImplIncomplete<HasTokenStore extends boolean, Projec
});
private readonly _serverUserCache = createCache<string[], UsersCrud['Server']['Read'] | null>(async ([userId]) => {
const user = await this._interface.getServerUserById(userId);
return await Result.or(user, null);
return Result.or(user, null);
});
private readonly _serverTeamsCache = createCache<[
userId?: string,