From 13a52bb685f1504a21858a9cc357e83ea601e09c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Czerpak?= Date: Mon, 13 Oct 2025 15:39:14 +0200 Subject: [PATCH 1/2] * chore: update --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 51a6e9e..c1f892a 100644 --- a/.gitignore +++ b/.gitignore @@ -305,3 +305,7 @@ fabric.properties # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # production /build + +### mise ### +mise.toml +.mise.local.toml From 7f7e7a10af92acabdfaebbb516aea081a2242493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Czerpak?= Date: Mon, 13 Oct 2025 15:39:32 +0200 Subject: [PATCH 2/2] * fix: reduce pressure on the API --- src/store/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/actions.js b/src/store/actions.js index cd1c0f6..32738a5 100644 --- a/src/store/actions.js +++ b/src/store/actions.js @@ -114,7 +114,7 @@ const wait = (duration) => { const fetchTestData = async (testId, retryNum = 0) => { const totalRetries = 180; - const delay = 3000; + const delay = 10000; try { let response = await fetch(TEST_RESULTS_END_POINT + '/' + testId); let data = await response.json();