Skip to content

Commit 9aef5fe

Browse files
authored
chore: modified some copy (#107)
1 parent 784c5f9 commit 9aef5fe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/@types/translations/en.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3101,7 +3101,7 @@
31013101
"enterCodeManually": "Enter code manually",
31023102
"backToLogin": "Back to login",
31033103
"enterCode": "Enter code",
3104-
"continueToSignIn": "Continue to sign in",
3104+
"continueToSignIn": "Continue with login code",
31053105
"requireCode": "Please enter a valid verification code.",
31063106
"signing": "Signing in...",
31073107
"invalidOTPCode": "The code is invalid or has expired. Please try again.",
@@ -3112,12 +3112,12 @@
31123112
"alreadyHaveAccount": "You're currently logged in as {{email}}.",
31133113
"login": "login",
31143114
"inviteCode": {
3115-
"title": "You've been invited to join {{workspaceName}}",
3115+
"title": "You've been invited to join\n{{workspaceName}}",
31163116
"joinWorkspace": "Join workspace",
31173117
"haveBeenInvited": "You’ve been invited to Join this workspace with the contact information below.",
31183118
"invalid": "Invite link is not valid",
31193119
"backToMyContent": "Back to my content",
31203120
"joining": "Joining...",
3121-
"hasJoined": "You’ve joined to {{workspaceName}}"
3121+
"hasJoined": "You’ve joined to\n{{workspaceName}}"
31223122
}
31233123
}

src/components/app/landing-pages/InviteCode.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function InviteCode () {
109109
<AvatarFallback>{workspace?.name?.slice(0, 1)}</AvatarFallback>
110110
</Avatar>
111111
</div>
112-
<div className={'text-xl text-center text-text-primary font-semibold'}>
112+
<div className={'text-xl text-center whitespace-pre-wrap break-words text-text-primary font-semibold'}>
113113
{isValid ? t('inviteCode.invalid') : hasJoined ? t('inviteCode.hasJoined', {
114114
workspaceName: workspace?.name,
115115
}) : t('inviteCode.title', {

0 commit comments

Comments
 (0)