Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcramer committed Mar 5, 2025
1 parent acf94d7 commit c619c11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/identity/hooks/useAvatar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const useAvatar = (
queryKey,
queryFn: () => getAvatar({ ensName, chain }),
gcTime: cacheTime,
staleTime: staleTime,
staleTime,
enabled,
refetchOnWindowFocus,
});
Expand Down
2 changes: 1 addition & 1 deletion src/identity/hooks/useName.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const useName = (
queryKey,
queryFn: () => getName({ address, chain }),
gcTime: cacheTime,
staleTime: staleTime,
staleTime,
enabled,
refetchOnWindowFocus,
});
Expand Down
2 changes: 1 addition & 1 deletion src/identity/hooks/useSocials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const useSocials = (
queryKey,
queryFn: () => getSocials({ ensName, chain }),
gcTime: cacheTime,
staleTime: staleTime,
staleTime,
enabled,
refetchOnWindowFocus,
});
Expand Down

0 comments on commit c619c11

Please sign in to comment.