Skip to content

Commit 4c04d36

Browse files
committed
fix lint
1 parent 6c67f5e commit 4c04d36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/locale-router-static/src/routes/[lang]/+layout.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<select
2626
on:change={({ target }) => {
2727
goto(`/${target.value}${route}`);
28-
document.querySelector("html").setAttribute("lang", target.value);
28+
document.querySelector('html').setAttribute('lang', target.value);
2929
}}
3030
>
3131
{#each $locales as lc}

0 commit comments

Comments
 (0)