diff --git a/src/lib/components/chat/Settings/Account.svelte b/src/lib/components/chat/Settings/Account.svelte index 6c484b54b..35d9aa882 100644 --- a/src/lib/components/chat/Settings/Account.svelte +++ b/src/lib/components/chat/Settings/Account.svelte @@ -151,8 +151,8 @@ if (canvasPixelTest()) { profileImageUrl = generateInitialsImage(name); } else { - toast.error( - $i18n.t('Canvas pixel test failed: fingerprint evasion likely. Disable fingerprint evasion and try again!'), + toast.info( + $i18n.t('Fingerprint spoofing detected: default profile picture set. Disable to access initial gravatar!'), { autoClose: 1000 * 10 } diff --git a/src/routes/auth/+page.svelte b/src/routes/auth/+page.svelte index 099d4a5b3..bab13c868 100644 --- a/src/routes/auth/+page.svelte +++ b/src/routes/auth/+page.svelte @@ -44,8 +44,8 @@ ); if (!canvasPixelTest()) { - toast.error( - $i18n.t('Canvas pixel test failed: fingerprint evasion likely. Using default avatar image.'), + toast.info( + $i18n.t('Fingerprint spoofing detected: default profile picture set. Disable to access initial gravatar!'), { position: "bottom-center", autoClose: 1000 * 10,