Skip to content

Commit d2b5c45

Browse files
authored
Merge pull request #653 from UTDNebula/fix/typo-permenantly
fixed issue #652, typo with permanently
2 parents d772f03 + fbc755d commit d2b5c45

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/app/manage/[slug]/(dashboard)/(forms)/DeleteClub.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default function DeleteClub({ view, club }: Props) {
6868
<div className="text-slate-800 dark:text-slate-200">
6969
{view === 'admin' && (
7070
<p>
71-
This will permenantly delete this organization from UTD Clubs.
71+
This will permanently delete this organization from UTD Clubs.
7272
</p>
7373
)}
7474
{view === 'manage' && club.approved === 'approved' && (
@@ -86,7 +86,7 @@ export default function DeleteClub({ view, club }: Props) {
8686
{view === 'manage' &&
8787
(club.approved === 'pending' || club.approved === 'rejected') && (
8888
<p>
89-
This will permenantly delete your organization from UTD Clubs.
89+
This will permanently delete your organization from UTD Clubs.
9090
</p>
9191
)}
9292
{view === 'manage' && club.approved === 'deleted' && (
@@ -129,11 +129,11 @@ export default function DeleteClub({ view, club }: Props) {
129129
contentText={
130130
view === 'manage' && club.approved === 'approved' ? (
131131
<>
132-
This will mark <b>{club.name}</b> for permenant deletion.
132+
This will mark <b>{club.name}</b> for permanent deletion.
133133
</>
134134
) : (
135135
<>
136-
This will permenantly delete <b>{club.name}</b>.
136+
This will permanently delete <b>{club.name}</b>.
137137
</>
138138
)
139139
}

src/components/settings/DeleteButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default function DeleteButton() {
2727
onClose={() => setOpen(false)}
2828
contentText={
2929
<>
30-
This will permenantly delete your account. <br />
30+
This will permanently delete your account. <br />
3131
All your account data will be cleared and removed from the platform.
3232
</>
3333
}

src/components/settings/forms/DeleteAccount.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default function DeleteAccount() {
88
className="bg-red-100 dark:bg-red-950 border border-red-500 dark:border-red-700"
99
description={
1010
<div className="text-slate-800 dark:text-slate-200">
11-
<p>This will permenantly delete your account from UTD Clubs.</p>
11+
<p>This will permanently delete your account from UTD Clubs.</p>
1212
</div>
1313
}
1414
>

0 commit comments

Comments
 (0)