mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-09-12 10:57:50 -05:00
fix: redeclared variable in nav
This commit is contained in:
@@ -542,15 +542,15 @@ onMounted(() => {
|
||||
class="locale-dropdown"
|
||||
>
|
||||
<button
|
||||
v-for="locale in sortedLocales"
|
||||
:key="locale.code"
|
||||
v-for="l in sortedLocales"
|
||||
:key="l.code"
|
||||
class="option"
|
||||
@click="
|
||||
setLocale(locale.code);
|
||||
setLocale(l.code);
|
||||
close();
|
||||
"
|
||||
>
|
||||
{{ locale.name }}
|
||||
{{ l.name }}
|
||||
</button>
|
||||
</Popover.Content>
|
||||
</Popover.Root>
|
||||
|
||||
Reference in New Issue
Block a user