diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/Login/ChooseAccountForm.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/screens/Login/ChooseAccountForm.tsx b/src/screens/Login/ChooseAccountForm.tsx index b345c83d6..d0d4c784d 100644 --- a/src/screens/Login/ChooseAccountForm.tsx +++ b/src/screens/Login/ChooseAccountForm.tsx @@ -133,15 +133,14 @@ export const ChooseAccountForm = ({ t.atoms.border_contrast_low, ]}> {accounts.map(account => ( - <> + <React.Fragment key={account.did}> <AccountItem - key={account.did} account={account} onSelect={onSelect} isCurrentAccount={account.did === currentAccount?.did} /> <View style={[a.border_b, t.atoms.border_contrast_low]} /> - </> + </React.Fragment> ))} <Button testID="chooseNewAccountBtn" |