mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
Fix lint error
This commit is contained in:
parent
7403e78251
commit
a3f3b09072
@ -913,7 +913,7 @@ class _StackServerAppImpl<HasTokenStore extends boolean, ProjectId extends strin
|
||||
});
|
||||
private readonly _serverUserCache = createCache<string[], ServerUserJson | 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(async () => {
|
||||
return await this._interface.listTeams();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user