Skip to content

Commit

Permalink
Fix #2429: ConfirmDialog Typescript remove double semicolon (#2430)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Nov 15, 2021
1 parent 66b0fb8 commit 58898a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/confirmdialog/ConfirmDialog.d.ts
Expand Up @@ -28,8 +28,8 @@ export interface ConfirmDialogProps extends Omit<DialogProps, 'onHide'> {
rejectLabel?: string;
acceptLabel?: string;
icon?: IconType<ConfirmDialogProps>;
rejectIcon?: IconType<ConfirmDialogProps>;;
acceptIcon?: IconType<ConfirmDialogProps>;;
rejectIcon?: IconType<ConfirmDialogProps>;
acceptIcon?: IconType<ConfirmDialogProps>;
rejectClassName?: string;
acceptClassName?: string;
appendTo?: ConfirmDialogAppendToType;
Expand Down

0 comments on commit 58898a4

Please sign in to comment.