diff --git a/ui/src/shared/reducers/overlayTechnology.ts b/ui/src/shared/reducers/overlayTechnology.ts index 284d4c32eb..8a5dc20128 100644 --- a/ui/src/shared/reducers/overlayTechnology.ts +++ b/ui/src/shared/reducers/overlayTechnology.ts @@ -16,10 +16,11 @@ export default function overlayTechnology(state = initialState, action) { } case 'DISMISS_OVERLAY': { + const {options} = initialState return { ...state, overlayNode: null, - options: null, + options, } } }