Clicking message icon in action panel closes request overlay.

pull/2222/head
warrickct 3 years ago
parent 07533232fb
commit af4457f68f

@ -25,7 +25,7 @@ import {
import { applyTheme } from '../../state/ducks/theme';
import { getFocusedSection } from '../../state/selectors/section';
import { clearSearch } from '../../state/ducks/search';
import { SectionType, showLeftPaneSection } from '../../state/ducks/section';
import { SectionType, setOverlayMode, showLeftPaneSection } from '../../state/ducks/section';
import { cleanUpOldDecryptedMedias } from '../../session/crypto/DecryptedAttachmentsManager';
@ -83,6 +83,7 @@ const Section = (props: { type: SectionType }) => {
} else {
dispatch(clearSearch());
dispatch(showLeftPaneSection(type));
dispatch(setOverlayMode(undefined));
}
};

Loading…
Cancel
Save