From e01e16190b152e90a07c62a27ab1fcb04c9f7d59 Mon Sep 17 00:00:00 2001 From: Carifio24 Date: Tue, 14 Apr 2026 18:32:50 -0400 Subject: [PATCH] Reduce rating timeout to 60s. --- src/SolarEclipse2024.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SolarEclipse2024.vue b/src/SolarEclipse2024.vue index 767f5e2..1aaf168 100644 --- a/src/SolarEclipse2024.vue +++ b/src/SolarEclipse2024.vue @@ -3589,7 +3589,7 @@ export default defineComponent({ if (!gaveRating) { this.questionTimeout = setTimeout(() => { this.showRating = true; - }, 90_000); + }, 60_000); } },