diff --git a/src/lib/components/chat/Settings/Account.svelte b/src/lib/components/chat/Settings/Account.svelte index 35d9aa882..5a152bc40 100644 --- a/src/lib/components/chat/Settings/Account.svelte +++ b/src/lib/components/chat/Settings/Account.svelte @@ -152,7 +152,9 @@ profileImageUrl = generateInitialsImage(name); } else { toast.info( - $i18n.t('Fingerprint spoofing detected: default profile picture set. Disable to access initial gravatar!'), + $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 bab13c868..babdc68a1 100644 --- a/src/routes/auth/+page.svelte +++ b/src/routes/auth/+page.svelte @@ -45,10 +45,12 @@ if (!canvasPixelTest()) { toast.info( - $i18n.t('Fingerprint spoofing detected: default profile picture set. Disable to access initial gravatar!'), + $i18n.t( + 'Fingerprint spoofing detected: default profile picture set. Disable to access initial gravatar!' + ), { - position: "bottom-center", - autoClose: 1000 * 10, + position: 'bottom-center', + autoClose: 1000 * 10 } ); }