diff --git a/src/components/views/ListAccountsView.tsx b/src/components/views/ListAccountsView.tsx index d1f1df0..3f194d7 100644 --- a/src/components/views/ListAccountsView.tsx +++ b/src/components/views/ListAccountsView.tsx @@ -14,7 +14,7 @@ export function accountToName(acc: Account) { if (acc.type === IdentityType.Email) { return ( - ({acc.email}) + Email ({acc.email}) ) } @@ -30,7 +30,7 @@ export function accountToName(acc: Account) { if (acc.type === IdentityType.PlayFab) { return ( - ({acc.email}) + PlayFab ({acc.email}) ) } @@ -39,7 +39,7 @@ export function accountToName(acc: Account) { if (acc.issuer?.includes('cognito-idp')) { return ( - Email v1 ({acc.email}) + Email Legacy ({acc.email}) ) }