Skip to content

Commit

Permalink
Remove stray console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
arildm committed Nov 15, 2023
1 parent b6150c7 commit e87e1f2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/i18n/locale.composable.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ export default function useLocale() {
};

// The ISO 639-3 code is used in many parts of the Språkbanken infrastructure.
const locale3 = computed(
() => console.log(locale.value) || (locale.value == "en" ? "eng" : "swe")
);
const locale3 = computed(() => (locale.value == "en" ? "eng" : "swe"));

// Sync from storage once, if present
if (storedLocale.value) {
Expand Down

0 comments on commit e87e1f2

Please sign in to comment.