Skip to content

Commit

Permalink
fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
IrisOlfermann committed Nov 19, 2024
1 parent 3e32bce commit beb94c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/src/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const changeLocale = () => {
};
onMounted(() => {
if(localStorage.Lang != null) locale.value = localStorage.Lang;
if (localStorage.Lang !== null) locale.value = localStorage.Lang;
});
const year = ref(new Date().getFullYear());
Expand Down

0 comments on commit beb94c5

Please sign in to comment.