Skip to content

Commit

Permalink
fix: twitter button spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
alerdenisov committed Oct 26, 2023
1 parent d686adc commit 5ade509
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/services/i18n/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
},
"discord": {
"action": "Login with Discord"
},
"twitter": {
"action": "Login with Twitter"
}
}
}
2 changes: 1 addition & 1 deletion src/services/social-auth/twitter/twitter-auth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function TwitterAuth({ connect }: { connect?: boolean }) {
return (
<>
<Button variant="contained" color="primary" onClick={onLogin}>
{t("common:auth.discord.action")}
{t("common:auth.twiiter.action")}
</Button>
</>
);
Expand Down

0 comments on commit 5ade509

Please sign in to comment.