fix: permanantly -> permanently

This commit is contained in:
Tom Moor
2023-10-17 18:16:41 -04:00
parent 43ee487e91
commit 03869784be
5 changed files with 8 additions and 8 deletions

View File

@@ -27,7 +27,7 @@ export default class ConfirmTeamDeleteEmail extends BaseEmail<Props> {
protected renderAsText({ deleteConfirmationCode }: Props): string {
return `
You requested to permanantly delete your ${env.APP_NAME} workspace. Please enter the code below to confirm the workspace deletion.
You requested to permanently delete your ${env.APP_NAME} workspace. Please enter the code below to confirm the workspace deletion.
Code: ${deleteConfirmationCode}
`;
@@ -41,7 +41,7 @@ Code: ${deleteConfirmationCode}
<Body>
<Heading>Your workspace deletion request</Heading>
<p>
You requested to permanantly delete your {env.APP_NAME} workspace.
You requested to permanently delete your {env.APP_NAME} workspace.
Please enter the code below to confirm your workspace deletion.
</p>
<EmptySpace height={5} />

View File

@@ -27,7 +27,7 @@ export default class ConfirmUserDeleteEmail extends BaseEmail<Props> {
protected renderAsText({ deleteConfirmationCode }: Props): string {
return `
You requested to permanantly delete your ${env.APP_NAME} account. Please enter the code below to confirm your account deletion.
You requested to permanently delete your ${env.APP_NAME} account. Please enter the code below to confirm your account deletion.
Code: ${deleteConfirmationCode}
`;
@@ -41,7 +41,7 @@ Code: ${deleteConfirmationCode}
<Body>
<Heading>Your account deletion request</Heading>
<p>
You requested to permanantly delete your {env.APP_NAME} account.
You requested to permanently delete your {env.APP_NAME} account.
Please enter the code below to confirm your account deletion.
</p>
<EmptySpace height={5} />