silence get user errors

This commit is contained in:
Nate Kelley 2025-09-23 14:43:32 -06:00
parent 6df723d13f
commit 6af95948db
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@ const favoritesGetList = queryOptions<UserFavoriteResponse>({
const userGetUserMyself = queryOptions<UserResponse | null>({
queryKey: ['myself'] as const,
staleTime: 1000 * 60 * 20, // 20 minutes
retry: () => false, //used to silence the retry error
});
const userGetUser = (userId: string) =>