diff --git a/packages/react/src/components/SkipLink/SkipLink.tsx b/packages/react/src/components/SkipLink/SkipLink.tsx index d0e7c92e8e..d6788699d2 100644 --- a/packages/react/src/components/SkipLink/SkipLink.tsx +++ b/packages/react/src/components/SkipLink/SkipLink.tsx @@ -10,9 +10,9 @@ export type SkipLinkProps = { } & AnchorHTMLAttributes; export const SkipLink = forwardRef( - function SkipLink({ children, className, ...rest }) { + function SkipLink({ children, className, ...rest }, ref) { return ( - + {children} );