Skip to content

Commit

Permalink
fix: default to english
Browse files Browse the repository at this point in the history
  • Loading branch information
mahyarmirrashed committed Dec 7, 2024
1 parent 363fdcc commit 12a0344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/custom/page-controls.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import { toggleMode } from "mode-watcher";
import { PersistedState } from "runed";
const language = new PersistedState<AvailableLanguageTag>("language", "fr");
const language = new PersistedState<AvailableLanguageTag>("language", "en");
function switchLanguage() {
if (language.current === "en") language.current = "fr";
Expand Down

0 comments on commit 12a0344

Please sign in to comment.