1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-29 15:11:58 +00:00

fix(web): clear locale setting (#10008)

This commit is contained in:
Michel Heusschen 2024-06-06 13:47:22 +02:00 committed by GitHub
parent 8f42766979
commit 051e6cfc0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -80,7 +80,9 @@
};
const handleLocaleChange = (newLocale: string | undefined) => {
$locale = newLocale;
if (newLocale) {
$locale = newLocale;
}
};
</script>