Skip to content

Commit

Permalink
Fix primefaces#2429: ConfirmDialog Typescript double semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Nov 14, 2021
1 parent 28f37e5 commit f05ff02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/confirmdialog/ConfirmDialog.d.ts
Original file line number Diff line number Diff line change
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 f05ff02

Please sign in to comment.