From 932fed2ff8290bd1df7bb424d7d8599e41d03532 Mon Sep 17 00:00:00 2001 From: Benjamin Christau Date: Mon, 29 Aug 2022 19:44:28 +0200 Subject: [PATCH] Fix error with the MUI Link component : https://github.com/mui/material-ui/pull/33842 --- apps/services/src/components/link/link.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/services/src/components/link/link.tsx b/apps/services/src/components/link/link.tsx index 0913d873..3092efc9 100644 --- a/apps/services/src/components/link/link.tsx +++ b/apps/services/src/components/link/link.tsx @@ -20,7 +20,7 @@ const Anchor = styled('a')({}); interface NextLinkComposedProps extends Omit, 'href'>, - Omit { + Omit { to: NextLinkProps['href']; linkAs?: NextLinkProps['as']; }