diff --git a/src/routes/estimation/[roomId]/+page.svelte b/src/routes/estimation/[roomId]/+page.svelte index 446dce5..1121097 100644 --- a/src/routes/estimation/[roomId]/+page.svelte +++ b/src/routes/estimation/[roomId]/+page.svelte @@ -102,8 +102,8 @@ '/sounds/explosion2.mp3' ], volume: { - min: 4, - max: 8 + min: 1, + max: 2 } } } @@ -195,6 +195,11 @@ } else if (message.type === 'estimation-closed') { estimateGroups = message.groupedEstimates; showFireworks = areEstimatesSame(estimateGroups); + if (showFireworks) { + setTimeout(() => { + showFireworks = false; + }, 5000); + } showRestartButton = true; showEstimates = true; disableEstimates = true;