Move login page toast error to the bottom of page and enable i18n for translation

This commit is contained in:
Self Denial 2024-04-05 22:43:42 -06:00
parent 69716a5cec
commit bad7dca51e
2 changed files with 8 additions and 4 deletions

View file

@ -152,7 +152,7 @@
profileImageUrl = generateInitialsImage(name); profileImageUrl = generateInitialsImage(name);
} else { } else {
toast.error( toast.error(
'Canvas pixel test failed, fingerprint evasion likely. Disable fingerprint evasion and try again!', $i18n.t('Canvas pixel test failed, fingerprint evasion likely. Disable fingerprint evasion and try again!'),
{ {
autoClose: 1000 * 10 autoClose: 1000 * 10
} }

View file

@ -44,9 +44,13 @@
); );
if (!canvasPixelTest()) { if (!canvasPixelTest()) {
toast.error('Canvas pixel test failed, fingerprint evasion likely. Default image used.', { toast.error(
autoClose: 1000 * 10 $i18n.t('Canvas pixel test failed, fingerprint evasion likely. Default image used.'),
}); {
position: "bottom-center",
autoClose: 1000 * 10,
}
);
} }
await setSessionUser(sessionUser); await setSessionUser(sessionUser);