fix: single mode value should be off

if disappearing messages isnt on
pull/2971/head
William Grant 2 years ago
parent ab13f39a10
commit 3ba1baaa67

@ -132,7 +132,9 @@ export const OverlayDisappearingMessages = () => {
useEffect(() => {
// NOTE loads a time value from the conversation model or the default
handleSetTime(
expireTimer && expireTimer > -1 ? expireTimer : loadDefaultTimeValue(modeSelected)
expireTimer !== undefined && expireTimer > -1
? expireTimer
: loadDefaultTimeValue(modeSelected)
);
}, [expireTimer, modeSelected]);

Loading…
Cancel
Save