From 7223fc067fefa45cccd22c57759f82e955cd230a Mon Sep 17 00:00:00 2001 From: warrickct Date: Mon, 14 Feb 2022 11:02:32 +1100 Subject: [PATCH] Adding ability to view requests from settings. --- ts/components/settings/section/CategoryPrivacy.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ts/components/settings/section/CategoryPrivacy.tsx b/ts/components/settings/section/CategoryPrivacy.tsx index 1ae494594..c1746868e 100644 --- a/ts/components/settings/section/CategoryPrivacy.tsx +++ b/ts/components/settings/section/CategoryPrivacy.tsx @@ -5,6 +5,7 @@ import useUpdate from 'react-use/lib/useUpdate'; import { SettingsKey } from '../../../data/settings-key'; import { CallManager } from '../../../session/utils'; import { sessionPassword, updateConfirmModal } from '../../../state/ducks/modalDialog'; +import { SectionType, setOverlayMode, showLeftPaneSection } from '../../../state/ducks/section'; import { toggleMessageRequests } from '../../../state/ducks/userConfig'; import { getIsMessageRequestsEnabled } from '../../../state/selectors/userConfig'; import { SessionButtonColor } from '../../basic/SessionButton'; @@ -122,7 +123,8 @@ export const SettingsCategoryPrivacy = (props: { title={window.i18n('openMessageRequestInbox')} description={window.i18n('openMessageRequestInboxDescription')} onClick={() => { - // TODO: open msg request inbox + dispatch(showLeftPaneSection(SectionType.Message)); + dispatch(setOverlayMode('message-requests')); }} buttonColor={SessionButtonColor.Primary} buttonText={window.i18n('openMessageRequestInbox')}