File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,8 +21,6 @@ interface ActionButtonsProps {
2121 onOpenPlaygroundClick : ( designId : string , name : string ) => void ;
2222 showInfoAction ?: boolean ;
2323 handleInfoClick ?: ( ) => void ;
24- showShareAction ?: boolean ;
25- handleShare : ( ) => void ;
2624 showDeleteAction ?: boolean ;
2725 handleDelete : ( ) => void ;
2826}
Original file line number Diff line number Diff line change @@ -25,8 +25,6 @@ interface LeftPanelProps {
2525 onOpenPlaygroundClick : ( designId : string , name : string ) => void ;
2626 showInfoAction ?: boolean ;
2727 handleInfoClick ?: ( ) => void ;
28- showShareAction ?: boolean ;
29- handleShare : ( ) => void ;
3028 showDeleteAction ?: boolean ;
3129 handleDelete : ( ) => void ;
3230}
@@ -49,8 +47,6 @@ const LeftPanel: React.FC<LeftPanelProps> = ({
4947 onOpenPlaygroundClick,
5048 showInfoAction = false ,
5149 handleInfoClick,
52- showShareAction = false ,
53- handleShare,
5450 showDeleteAction = false ,
5551 handleDelete
5652} ) => {
@@ -97,8 +93,6 @@ const LeftPanel: React.FC<LeftPanelProps> = ({
9793 onOpenPlaygroundClick = { onOpenPlaygroundClick }
9894 showInfoAction = { showInfoAction }
9995 handleInfoClick = { handleInfoClick }
100- showShareAction = { showShareAction }
101- handleShare = { handleShare }
10296 showDeleteAction = { showDeleteAction }
10397 handleDelete = { handleDelete }
10498 />
You can’t perform that action at this time.
0 commit comments