From 7d2a0499b33ee3181552aa9665c0e38f76391220 Mon Sep 17 00:00:00 2001 From: Patryk Kalinowski Date: Fri, 23 Aug 2024 18:26:56 +0200 Subject: [PATCH] small fix for account names (#41) --- src/components/views/ListAccountsView.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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}) ) }