Update modals.ts

awaitasyncmodals
bunsenstraat 3 years ago committed by GitHub
parent a6fb42a5ab
commit 8be26c06b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      libs/remix-ui/app/src/lib/remix-app/reducer/modals.ts

@ -30,12 +30,12 @@ export const modalReducer = (state: ModalState = ModalInitialState, action: Moda
return { ...state, modals: modalList }
}
case modalActionTypes.handleHideModal:
if (state.focusModal.resolve) {
state.focusModal.resolve(undefined)
} else
if (state.focusModal.hideFn) {
state.focusModal.hideFn()
}
else if (state.focusModal.resolve) {
state.focusModal.resolve(undefined)
}
state.focusModal = { ...state.focusModal, hide: true, message: null }
return { ...state }

Loading…
Cancel
Save