Only show send toast in chat if send_delay is set

This commit is contained in:
Jon Staab
2025-10-02 11:28:11 -07:00
parent db98ce8db7
commit 666433912f
2 changed files with 18 additions and 14 deletions
@@ -137,13 +137,15 @@
delay: $userSettingsValues.send_delay, delay: $userSettingsValues.send_delay,
}) })
pushToast({ if ($userSettingsValues.send_delay) {
timeout: 30_000, pushToast({
children: { timeout: 30_000,
component: ThunkToast, children: {
props: {thunk}, component: ThunkToast,
}, props: {thunk},
}) },
})
}
clearParent() clearParent()
clearShare() clearShare()
+9 -7
View File
@@ -74,13 +74,15 @@
delay: $userSettingsValues.send_delay, delay: $userSettingsValues.send_delay,
}) })
pushToast({ if ($userSettingsValues.send_delay) {
timeout: 30_000, pushToast({
children: { timeout: 30_000,
component: ThunkToast, children: {
props: {thunk}, component: ThunkToast,
}, props: {thunk},
}) },
})
}
clearParent() clearParent()
clearShare() clearShare()