feat: add delay before showing dialogs and enhance item card styles for better user feedback
Some checks failed
Chore App Build, Test, and Push Docker Images / build-and-push (push) Failing after 1m11s

This commit is contained in:
2026-02-27 14:05:09 -05:00
parent f12940dc11
commit 65e987ceb6
3 changed files with 34 additions and 8 deletions

View File

@@ -563,7 +563,9 @@ const triggerTask = (task: Task) => {
showPendingRewardDialog.value = true
return
}
showConfirm.value = true
setTimeout(() => {
showConfirm.value = true
}, 150)
}
async function cancelRewardById(rewardId: string) {
@@ -629,7 +631,9 @@ const triggerReward = (reward: RewardStatus) => {
return
}
selectedReward.value = reward
showRewardConfirm.value = true
setTimeout(() => {
showRewardConfirm.value = true
}, 150)
}
const confirmTriggerReward = async () => {