From 986f14f8e8c23af52a6dde8758fa5aef5cbfc46a Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Sun, 25 Feb 2024 14:33:24 +1100 Subject: [PATCH] fix: Redirect too fast --- templates/publishing.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/publishing.html b/templates/publishing.html index 5e6c91d..9abc2d6 100644 --- a/templates/publishing.html +++ b/templates/publishing.html @@ -21,7 +21,7 @@ function redirect() { setTimeout(function() { window.location.href = '/site'; - }, 2000); + }, 4000); } redirect();