From 3d2c1fbe788a7cb616e3090db60e1e3d10fe5609 Mon Sep 17 00:00:00 2001 From: William Grant Date: Mon, 18 Sep 2023 14:40:04 +1000 Subject: [PATCH] fix: single mode should show the correct timer values if a mode is invalid we return no timer options --- .../disappearing-messages/OverlayDisappearingMessages.tsx | 2 +- ts/hooks/useParamSelector.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/components/conversation/right-panel/overlay/disappearing-messages/OverlayDisappearingMessages.tsx b/ts/components/conversation/right-panel/overlay/disappearing-messages/OverlayDisappearingMessages.tsx index 0c3f8410f..2a713489e 100644 --- a/ts/components/conversation/right-panel/overlay/disappearing-messages/OverlayDisappearingMessages.tsx +++ b/ts/components/conversation/right-panel/overlay/disappearing-messages/OverlayDisappearingMessages.tsx @@ -89,7 +89,7 @@ export const OverlayDisappearingMessages = () => { const weAreAdmin = useSelectedWeAreAdmin(); const [modeSelected, setModeSelected] = useState( - expirationType + hasOnlyOneMode ? singleMode : expirationType ); const [timeSelected, setTimeSelected] = useState(expireTimer || 0); diff --git a/ts/hooks/useParamSelector.ts b/ts/hooks/useParamSelector.ts index 2ffeb94b1..9cdb5388a 100644 --- a/ts/hooks/useParamSelector.ts +++ b/ts/hooks/useParamSelector.ts @@ -331,7 +331,7 @@ export function useTimerOptionsByMode(disappearingMessageMode?: string, hasOnlyO ); }); default: - return options; + return []; } }); }