From 588f19f64192b85ccfdb4bc1cc341bf6b7b11337 Mon Sep 17 00:00:00 2001 From: Owen Craston Date: Mon, 21 Oct 2024 20:04:04 -0700 Subject: [PATCH] do not select first account --- app/components/Views/AccountActions/AccountActions.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/components/Views/AccountActions/AccountActions.tsx b/app/components/Views/AccountActions/AccountActions.tsx index fb941e1dc8e..99547d6cfda 100644 --- a/app/components/Views/AccountActions/AccountActions.tsx +++ b/app/components/Views/AccountActions/AccountActions.tsx @@ -229,13 +229,12 @@ const AccountActions = () => { onPress: async () => { sheetRef.current?.onCloseBottomSheet(async () => { await removeSnapAccount(); - await selectFirstAccount(); }); }, }, ], ); - }, [removeSnapAccount, selectFirstAccount]); + }, [removeSnapAccount]); ///: END:ONLY_INCLUDE_IF /**