Browse Source

fix: 🐛

imwald
codytseng 10 months ago
parent
commit
6bfae35f6a
  1. 2
      src/providers/UserTrustProvider.tsx

2
src/providers/UserTrustProvider.tsx

@ -46,7 +46,7 @@ export function UserTrustProvider({ children }: { children: React.ReactNode }) { @@ -46,7 +46,7 @@ export function UserTrustProvider({ children }: { children: React.ReactNode }) {
if (!currentPubkey || !enabled) return true
return wotSet.has(pubkey)
},
[enabled]
[currentPubkey, enabled]
)
const updateEnabled = (enabled: boolean) => {

Loading…
Cancel
Save