From ffc4ca9f817e1ec09b284647bb24426117ddb50f Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 7 Sep 2022 16:20:32 +1000 Subject: [PATCH] fix: do not autofocus settings section by default but Message --- ts/state/ducks/section.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/state/ducks/section.tsx b/ts/state/ducks/section.tsx index 435cc67a2..9c0ffcd7f 100644 --- a/ts/state/ducks/section.tsx +++ b/ts/state/ducks/section.tsx @@ -91,8 +91,8 @@ export const actions = { }; export const initialSectionState: SectionStateType = { - focusedSection: SectionType.Settings, - focusedSettingsSection: SessionSettingCategory.Appearance, + focusedSection: SectionType.Message, + focusedSettingsSection: undefined, isAppFocused: false, overlayMode: undefined, };