Merge pull request #1272 from rlaisqls/error-message-typos

Fix error message typos
This commit is contained in:
Daniel Hougaard
2024-01-05 18:18:20 +04:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -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();

View File

@@ -89,7 +89,7 @@ export const SignUpPage = () => {
console.log(err);
createNotification({
type: "error",
text: "Faield to create admin"
text: "Failed to create admin"
});
}
};
@@ -108,7 +108,7 @@ export const SignUpPage = () => {
console.log(err);
createNotification({
type: "error",
text: "Faield to generate backup"
text: "Failed to generate backup"
});
}
};