Set NostrProvider debug mode to false for production readiness

This commit is contained in:
2025-05-28 23:50:42 +02:00
parent 9f6c9ec02f
commit 64cf1c65c1

View File

@@ -13,7 +13,7 @@ export default function NostrClientWrapper({
children: ReactNode children: ReactNode
}) { }) {
return ( return (
<NostrProvider relayUrls={relayUrls} debug={true}> <NostrProvider relayUrls={relayUrls} debug={false}>
{children} {children}
</NostrProvider> </NostrProvider>
); );