Skip to content

Commit

Permalink
small fix for account names (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrislav authored Aug 23, 2024
1 parent 6dbfcaa commit 7d2a049
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/views/ListAccountsView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function accountToName(acc: Account) {
if (acc.type === IdentityType.Email) {
return (
<Text variant="normal" color="text100">
({acc.email})
Email ({acc.email})
</Text>
)
}
Expand All @@ -30,7 +30,7 @@ export function accountToName(acc: Account) {
if (acc.type === IdentityType.PlayFab) {
return (
<Text variant="normal" color="text100">
({acc.email})
PlayFab ({acc.email})
</Text>
)
}
Expand All @@ -39,7 +39,7 @@ export function accountToName(acc: Account) {
if (acc.issuer?.includes('cognito-idp')) {
return (
<Text variant="normal" color="text100">
Email v1 ({acc.email})
Email Legacy ({acc.email})
</Text>
)
}
Expand Down

0 comments on commit 7d2a049

Please sign in to comment.