diff --git a/packages/desktop-client/src/components/common/AnchorLink.tsx b/packages/desktop-client/src/components/common/AnchorLink.tsx index 534973a7cd2..5defecba686 100644 --- a/packages/desktop-client/src/components/common/AnchorLink.tsx +++ b/packages/desktop-client/src/components/common/AnchorLink.tsx @@ -10,7 +10,6 @@ type AnchorLinkProps = { style?: CSSProperties; activeStyle?: CSSProperties; children?: ReactNode; - report?: []; }; export function AnchorLink({ @@ -18,14 +17,12 @@ export function AnchorLink({ style, activeStyle, children, - report, }: AnchorLinkProps) { const match = useMatch({ path: to }); return (