From f7ee3a576a46d50642654bd7d00766c94ad62cc4 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 2 Jan 2025 10:10:05 -0600 Subject: [PATCH] Use consistent type in profile query --- src/state/queries/profile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/queries/profile.ts b/src/state/queries/profile.ts index fa5675e874..3835ff01e8 100644 --- a/src/state/queries/profile.ts +++ b/src/state/queries/profile.ts @@ -73,7 +73,7 @@ export function useProfileQuery({ placeholderData: () => { if (!did) return - return queryClient.getQueryData( + return queryClient.getQueryData( profileBasicQueryKey(did), ) },