From c1f687b7b10fd15fbed2632297f7f33c2d18242e Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Sun, 25 Feb 2024 14:31:29 +1100 Subject: [PATCH] fix: Use 2 second redirect --- templates/publishing.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/publishing.html b/templates/publishing.html index 1649651..5e6c91d 100644 --- a/templates/publishing.html +++ b/templates/publishing.html @@ -21,7 +21,7 @@ function redirect() { setTimeout(function() { window.location.href = '/site'; - }, 5000); + }, 2000); } redirect();