setJsonOpen(false)} />
+
+ {bech32Ids.length === 0 ? (
+
{t('No pinned notes in list')}
+ ) : (
+
+ )}
+
+
+ )
+ }
+)
+
+PinListPage.displayName = 'PinListPage'
+export default PinListPage
diff --git a/src/pages/secondary/WalletPage/ZapReplyThresholdInput.tsx b/src/pages/secondary/WalletPage/ZapReplyThresholdInput.tsx
index 6f138609..b9747f53 100644
--- a/src/pages/secondary/WalletPage/ZapReplyThresholdInput.tsx
+++ b/src/pages/secondary/WalletPage/ZapReplyThresholdInput.tsx
@@ -1,7 +1,7 @@
import { Input } from '@/components/ui/input'
import { Label } from '@/components/ui/label'
import { useZap } from '@/providers/ZapProvider'
-import { useState } from 'react'
+import { useEffect, useState } from 'react'
import { useTranslation } from 'react-i18next'
export default function ZapReplyThresholdInput() {
@@ -9,6 +9,10 @@ export default function ZapReplyThresholdInput() {
const { zapReplyThreshold, updateZapReplyThreshold } = useZap()
const [zapReplyThresholdInput, setZapReplyThresholdInput] = useState(zapReplyThreshold)
+ useEffect(() => {
+ setZapReplyThresholdInput(zapReplyThreshold)
+ }, [zapReplyThreshold])
+
return (