diff --git a/src/components/ButtonLink.tsx b/src/components/ButtonLink.tsx index 208945b8a7a..29ca533728a 100644 --- a/src/components/ButtonLink.tsx +++ b/src/components/ButtonLink.tsx @@ -12,15 +12,21 @@ const ButtonLink: React.FC = ({ children, isSecondary, ...props }) => { * Prevent React warning that does not recognize `isSecondary` on DOM * while still sending prop to the theme config */ - const styles = useStyleConfig("Button", { ...props, isSecondary }) + const styles = useStyleConfig("Button", { + ...props, + isSecondary, + }) return (