fix: button links not responding when touched on a mobile device (#217)

This commit is contained in:
kimatata
2025-04-29 18:38:09 +09:00
committed by GitHub
parent 921c732860
commit de9e26a241
6 changed files with 72 additions and 54 deletions

View File

@@ -101,12 +101,7 @@ export default function HeaderNavbarMenu({ messages, locale }: Props) {
{commonLinks.map((link) =>
link.isExternal ? (
<NavbarItem key={link.uid} className="hidden md:block">
<NextUiLink
isExternal
href={link.href}
showAnchorIcon
anchorIcon={<MoveUpRight size={12} className="ms-1" />}
>
<NextUiLink isExternal href={link.href} showAnchorIcon>
{link.label}
</NextUiLink>
</NavbarItem>