removing getContainer fixed (#19233)

This commit is contained in:
Emerson Laurentino 2019-11-07 23:24:53 -03:00 committed by Amumu
parent a35b6241eb
commit be0fd703f7

View File

@ -148,7 +148,7 @@ export default function confirm(config: ModalFuncProps) {
}
function render(props: any) {
ReactDOM.render(<ConfirmDialog getContainer={false} {...props} />, div);
ReactDOM.render(<ConfirmDialog {...props} />, div);
}
function close(...args: any[]) {