From 3007c1dc8adff1a19d022ed8a7da4e5eeb9b4454 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Sun, 26 Nov 2023 15:44:08 -0600 Subject: Fix bad references in account switcher (#1999) --- src/view/com/modals/SwitchAccount.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/view/com/modals/SwitchAccount.tsx b/src/view/com/modals/SwitchAccount.tsx index dab0127cc..38e1ce1e0 100644 --- a/src/view/com/modals/SwitchAccount.tsx +++ b/src/view/com/modals/SwitchAccount.tsx @@ -45,10 +45,10 @@ function SwitchAccountCard({account}: {account: SessionAccount}) { - {profile?.displayName || currentAccount?.handle} + {profile?.displayName || account?.handle} - {currentAccount?.handle} + {account?.handle} -- cgit 1.4.1