Skip to content

Commit be8ad1d

Browse files
committed
chore: unnecessary type removed
1 parent 6e5adaf commit be8ad1d

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/components/notifications/ConfigTableRowActionButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export const ConfigurationRowActionButtonWrapper = ({
8383
return (
8484
<ConfigTableRowActionButton
8585
onClickEditRow={onClickEditRow()}
86-
onClickDeleteRow={deleteClickHandler(row.id, modal)}
86+
onClickDeleteRow={deleteClickHandler(Number(row.id), modal)}
8787
modal={modal}
8888
/>
8989
)

src/components/notifications/types.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,6 @@ export interface NotificationTabState {
306306

307307
export interface BaseConfigurationTableRowType {
308308
name: React.ReactNode
309-
actions?: React.ReactNode
310309
}
311310

312311
export interface SESConfigurationTableRowType extends BaseConfigurationTableRowType {

0 commit comments

Comments
 (0)