From 29553e37ea74f461166aa1865c7e2195029423a0 Mon Sep 17 00:00:00 2001 From: Ethan O'Brien <77750390+ethanaobrien@users.noreply.github.com> Date: Sat, 4 May 2024 18:54:41 -0500 Subject: [PATCH] Adjust offset time --- webui/src/home/Home.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/src/home/Home.jsx b/webui/src/home/Home.jsx index 0106dba..a668ba1 100644 --- a/webui/src/home/Home.jsx +++ b/webui/src/home/Home.jsx @@ -73,7 +73,7 @@ function Home() { const handleSubmit = async (event) => { event.preventDefault(); let input = parseInt(inputValue.trim()); - let time = Math.round((new Date(inputValue.trim()).getTime() + 200000) / 1000); + let time = Math.round((new Date(inputValue.trim()).getTime() + 70000) / 1000); if (input === -1) { time = 1711741114; }