diff --git a/src/state/queries/handle.ts b/src/state/queries/handle.ts index a68a946006..97e9b21073 100644 --- a/src/state/queries/handle.ts +++ b/src/state/queries/handle.ts @@ -13,8 +13,6 @@ export function useFetchHandle() { async (handleOrDid: string) => { if (handleOrDid.startsWith('did:')) { const res = await queryClient.fetchQuery({ - // cache in memory forever, page reload clears - staleTime: Infinity, queryKey: fetchHandleQueryKey(handleOrDid), queryFn: () => agent.getProfile({actor: handleOrDid}), })