fix: increase toast duration when evaluation scheduling fails

This commit is contained in:
Jannat Patel
2025-12-19 14:36:00 +05:30
parent 356ce7478c
commit 51c1b816a1

View File

@@ -124,7 +124,7 @@ function submitEvaluation(close) {
})
.catch((err) => {
console.log(err.messages?.[0] || err)
toast.warning(__(err.messages?.[0] || err))
toast.warning(__(err.messages?.[0] || err), { duration: 20 })
})
}