Fix ts error in portal after enabling more strict checks

This commit is contained in:
Leonid Logvinov
2018-01-10 12:39:37 +01:00
parent fa7237fde7
commit e34b0af251
12 changed files with 42 additions and 38 deletions

View File

@@ -5,7 +5,7 @@ import { colors } from 'ts/utils/colors';
interface FillWarningDialogProps {
isOpen: boolean;
onToggleDialog: () => void;
onToggleDialog: (didUserCancel: boolean) => void;
}
export function FillWarningDialog(props: FillWarningDialogProps) {