fix: minor (and i mean minor) changes

This commit is contained in:
Daniel Hougaard
2025-08-05 23:45:42 +04:00
parent 0cb21082c7
commit 23f6fbe9fc
3 changed files with 3 additions and 3 deletions

View File

@@ -54,7 +54,7 @@ const attemptLogin = async ({
if (err.response?.data?.error === "LegacyEncryptionScheme") {
createNotification({
text: "Failed to login without SRP, attempting to authenticate with legacy SRP authentication.",
type: "error"
type: "info"
});
return null;

View File

@@ -50,7 +50,7 @@ const attemptLogin = async ({
if (err.response?.data?.error === "LegacyEncryptionScheme") {
createNotification({
text: "Failed to login without SRP, attempting to authenticate with legacy SRP authentication.",
type: "error"
type: "info"
});
return null;

View File

@@ -64,7 +64,7 @@ export const ChangePasswordSection = () => {
if (user.encryptionVersion !== UserEncryptionVersion.V2) {
createNotification({
text: "Legacy encryption scheme not supported for changing password. Please log out and log back in before changing your password.",
text: "Legacy encryption scheme not supported for changing password. Please contact support.",
type: "error"
});