Skip to content

Commit

Permalink
Merge pull request #1272 from rlaisqls/error-message-typos
Browse files Browse the repository at this point in the history
Fix error message typos
  • Loading branch information
DanielHougaard committed Jan 5, 2024
2 parents ebd3d7c + ade27ad commit ee14bda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/signup/DonwloadBackupPDFStep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default function DonwloadBackupPDFStep({
console.log(err);
createNotification({
type: "error",
text: "Faield to generate backup key"
text: "Failed to generate backup key"
});
} finally {
setIsLoading.off();
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/views/admin/SignUpPage/SignUpPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const SignUpPage = () => {
console.log(err);
createNotification({
type: "error",
text: "Faield to create admin"
text: "Failed to create admin"
});
}
};
Expand All @@ -108,7 +108,7 @@ export const SignUpPage = () => {
console.log(err);
createNotification({
type: "error",
text: "Faield to generate backup"
text: "Failed to generate backup"
});
}
};
Expand Down

0 comments on commit ee14bda

Please sign in to comment.