Skip to content

Commit 47f0a50

Browse files
shinyichenthostetler
authored andcommitted
feedback dropdown fix
1 parent 5d51717 commit 47f0a50

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/components/NavBar/FeedbackDropdown.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,16 @@ export const FeedbackDropdown = (props: IFeedbackDropdownProps): ReactElement =>
5757
</MenuButton>
5858
<MenuList zIndex={500}>
5959
{items.map((item) => (
60-
<MenuItem key={item.id}>
61-
<Link
62-
href={buildHref(item.path, router.asPath)}
63-
data-id={item.id}
64-
fontWeight="normal"
65-
color={colors.text}
66-
_hover={{ textDecoration: 'none' }}
67-
>
68-
{item.label}
69-
</Link>
60+
<MenuItem
61+
key={item.id}
62+
as="a"
63+
href={buildHref(item.path, router.asPath)}
64+
data-id={item.id}
65+
fontWeight="normal"
66+
color={colors.text}
67+
_hover={{ textDecoration: 'none' }}
68+
>
69+
{item.label}
7070
</MenuItem>
7171
))}
7272
</MenuList>

0 commit comments

Comments
 (0)