File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,6 @@ interface ActionButtonsProps {
21
21
onOpenPlaygroundClick : ( designId : string , name : string ) => void ;
22
22
showInfoAction ?: boolean ;
23
23
handleInfoClick ?: ( ) => void ;
24
- showShareAction ?: boolean ;
25
- handleShare : ( ) => void ;
26
24
showDeleteAction ?: boolean ;
27
25
handleDelete : ( ) => void ;
28
26
}
Original file line number Diff line number Diff line change @@ -25,8 +25,6 @@ interface LeftPanelProps {
25
25
onOpenPlaygroundClick : ( designId : string , name : string ) => void ;
26
26
showInfoAction ?: boolean ;
27
27
handleInfoClick ?: ( ) => void ;
28
- showShareAction ?: boolean ;
29
- handleShare : ( ) => void ;
30
28
showDeleteAction ?: boolean ;
31
29
handleDelete : ( ) => void ;
32
30
}
@@ -49,8 +47,6 @@ const LeftPanel: React.FC<LeftPanelProps> = ({
49
47
onOpenPlaygroundClick,
50
48
showInfoAction = false ,
51
49
handleInfoClick,
52
- showShareAction = false ,
53
- handleShare,
54
50
showDeleteAction = false ,
55
51
handleDelete
56
52
} ) => {
@@ -97,8 +93,6 @@ const LeftPanel: React.FC<LeftPanelProps> = ({
97
93
onOpenPlaygroundClick = { onOpenPlaygroundClick }
98
94
showInfoAction = { showInfoAction }
99
95
handleInfoClick = { handleInfoClick }
100
- showShareAction = { showShareAction }
101
- handleShare = { handleShare }
102
96
showDeleteAction = { showDeleteAction }
103
97
handleDelete = { handleDelete }
104
98
/>
You can’t perform that action at this time.
0 commit comments