diff --git a/src/components/AccountList.tsx b/src/components/AccountList.tsx
index 76596df3e7..7d696801ed 100644
--- a/src/components/AccountList.tsx
+++ b/src/components/AccountList.tsx
@@ -16,12 +16,12 @@ export function AccountList({
onSelectAccount,
onSelectOther,
otherLabel,
- isSwitchingAccounts,
+ pendingDid,
}: {
onSelectAccount: (account: SessionAccount) => void
onSelectOther: () => void
otherLabel?: string
- isSwitchingAccounts: boolean
+ pendingDid: string | null
}) {
const {currentAccount, accounts} = useSession()
const t = useTheme()
@@ -33,6 +33,7 @@ export function AccountList({
return (
@@ -52,7 +54,7 @@ export function AccountList({