-
+
{user?.about}
@@ -75,7 +75,7 @@ export function UserProfile({ pubkey }: { pubkey: string }) {
{status === 'loading' ? (
@@ -83,7 +83,7 @@ export function UserProfile({ pubkey }: { pubkey: string }) {
@@ -91,20 +91,20 @@ export function UserProfile({ pubkey }: { pubkey: string }) {
)}
Message
diff --git a/src/utils/hooks/useAccount.tsx b/src/utils/hooks/useAccount.tsx
index 1d258451..cc9838d5 100644
--- a/src/utils/hooks/useAccount.tsx
+++ b/src/utils/hooks/useAccount.tsx
@@ -18,7 +18,7 @@ export function useAccount() {
},
{
staleTime: Infinity,
- refetchOnMount: true,
+ refetchOnMount: false,
refetchOnWindowFocus: false,
refetchOnReconnect: true,
}
diff --git a/src/utils/hooks/useProfile.tsx b/src/utils/hooks/useProfile.tsx
index eb5a1b2a..b2126ad5 100644
--- a/src/utils/hooks/useProfile.tsx
+++ b/src/utils/hooks/useProfile.tsx
@@ -36,6 +36,7 @@ export function useProfile(pubkey: string, fallback?: string) {
}
},
{
+ refetchOnMount: false,
refetchOnWindowFocus: false,
refetchOnReconnect: false,
}