We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e5adaf commit be8ad1dCopy full SHA for be8ad1d
2 files changed
src/components/notifications/ConfigTableRowActionButton.tsx
@@ -83,7 +83,7 @@ export const ConfigurationRowActionButtonWrapper = ({
83
return (
84
<ConfigTableRowActionButton
85
onClickEditRow={onClickEditRow()}
86
- onClickDeleteRow={deleteClickHandler(row.id, modal)}
+ onClickDeleteRow={deleteClickHandler(Number(row.id), modal)}
87
modal={modal}
88
/>
89
)
src/components/notifications/types.tsx
@@ -306,7 +306,6 @@ export interface NotificationTabState {
306
307
export interface BaseConfigurationTableRowType {
308
name: React.ReactNode
309
- actions?: React.ReactNode
310
}
311
312
export interface SESConfigurationTableRowType extends BaseConfigurationTableRowType {
0 commit comments