Skip to content

Commit

Permalink
fix: ally
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardocasares committed Oct 30, 2020
1 parent 3eef3af commit d1959a7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/pages/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ export const Index = () => {
{locales.map((lang) => (
<li key={lang}>
<Link href="/settings" locale={lang}>
<ToggleItem>
<a>{localesMap[lang]}</a>
<Toggle active={locale == lang} />
</ToggleItem>
<a>
<ToggleItem>
{localesMap[lang]} <Toggle active={locale == lang} />
</ToggleItem>
</a>
</Link>
</li>
))}
Expand Down

1 comment on commit d1959a7

@vercel
Copy link

@vercel vercel bot commented on d1959a7 Oct 30, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.