Skip to content

Commit 9147141

Browse files
committed
fix(code): rm dead code
Signed-off-by: Sudhanshu Dasgupta <[email protected]>
1 parent be52d8b commit 9147141

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

src/custom/CatalogDetail/ActionButton.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

src/custom/CatalogDetail/LeftPanel.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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
/>

0 commit comments

Comments
 (0)