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,
})
pushToast({
timeout: 30_000,
children: {
component: ThunkToast,
props: {thunk},
},
})
if ($userSettingsValues.send_delay) {
pushToast({
timeout: 30_000,
children: {
component: ThunkToast,
props: {thunk},
},
})
}
clearParent()
clearShare()
+9 -7
View File
@@ -74,13 +74,15 @@
delay: $userSettingsValues.send_delay,
})
pushToast({
timeout: 30_000,
children: {
component: ThunkToast,
props: {thunk},
},
})
if ($userSettingsValues.send_delay) {
pushToast({
timeout: 30_000,
children: {
component: ThunkToast,
props: {thunk},
},
})
}
clearParent()
clearShare()