diff --git a/code/core/src/manager/components/sidebar/ChecklistWidget.tsx b/code/core/src/manager/components/sidebar/ChecklistWidget.tsx index 5450330ab035..48d338d0aecc 100644 --- a/code/core/src/manager/components/sidebar/ChecklistWidget.tsx +++ b/code/core/src/manager/components/sidebar/ChecklistWidget.tsx @@ -178,6 +178,7 @@ const CopyButton = ({ label, copyContent, onClick, + ...props }: { label: string; copyContent: string; @@ -196,7 +197,11 @@ const CopyButton = ({ content: copyContent, }); - return {copyChildren}; + return ( + + {copyChildren} + + ); }; export const ChecklistWidget = () => {