Skip to content

Commit

Permalink
Fix error with the MUI Link component : mui/material-ui#33842
Browse files Browse the repository at this point in the history
  • Loading branch information
K0rdan committed Aug 29, 2022
1 parent e8649f0 commit 932fed2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/services/src/components/link/link.tsx
Expand Up @@ -20,7 +20,7 @@ const Anchor = styled('a')({});

interface NextLinkComposedProps
extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'href'>,
Omit<NextLinkProps, 'href' | 'as' | 'onClick' | 'onMouseEnter'> {
Omit<NextLinkProps, 'href' | 'as' | 'onClick' | 'onMouseEnter' | 'onTouchStart'> {
to: NextLinkProps['href'];
linkAs?: NextLinkProps['as'];
}
Expand Down

0 comments on commit 932fed2

Please sign in to comment.