From 3920c900de50035279dddec189c12b07632ef0dc Mon Sep 17 00:00:00 2001 From: benthecarman Date: Fri, 5 Apr 2024 11:19:48 -0500 Subject: [PATCH] Remove sync_nostr call on startup --- src/state/megaStore.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/state/megaStore.tsx b/src/state/megaStore.tsx index 0d23414b..8c441266 100644 --- a/src/state/megaStore.tsx +++ b/src/state/megaStore.tsx @@ -241,13 +241,6 @@ export const Provider: ParentComponent = (props) => { return; } - // Sync our nostr profile info - try { - await state.mutiny_wallet.sync_nostr(); - } catch (e) { - console.error("error syncing nostr profile", e); - } - // Check if we're subscribed and update the timestamp try { const timestamp = await state.mutiny_wallet.check_subscribed();