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 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();