From 0958a5891670b535d431b587d626a9e3b2fb024a Mon Sep 17 00:00:00 2001 From: stevejpurves Date: Thu, 12 Sep 2024 11:17:27 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=ACtweak=20taskId?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site/app/routes/_index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/app/routes/_index.tsx b/site/app/routes/_index.tsx index ffd7ca1..520786f 100644 --- a/site/app/routes/_index.tsx +++ b/site/app/routes/_index.tsx @@ -31,7 +31,7 @@ async function actionCheckDoi(formData: FormData) { async function actionCreateJobManifest(formData: FormData) { const result = await createJobManifest({ ...manifest, - taskId: Math.floor(Date.now() + Math.random() * 1e8).toString(16), + taskId: Math.floor(Date.now() + 1e12).toString(16), } as AAMDepositManifest); return result; }