We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d51717 commit 47f0a50Copy full SHA for 47f0a50
src/components/NavBar/FeedbackDropdown.tsx
@@ -57,16 +57,16 @@ export const FeedbackDropdown = (props: IFeedbackDropdownProps): ReactElement =>
57
</MenuButton>
58
<MenuList zIndex={500}>
59
{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>
+ <MenuItem
+ key={item.id}
+ as="a"
+ href={buildHref(item.path, router.asPath)}
+ data-id={item.id}
+ fontWeight="normal"
+ color={colors.text}
+ _hover={{ textDecoration: 'none' }}
+ >
+ {item.label}
70
</MenuItem>
71
))}
72
</MenuList>
0 commit comments