From 15032bba2d82288fb63aacb7cd62024e1fd2621b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Bu=C3=9Fmann?= Date: Fri, 22 Jul 2022 23:25:15 +0200 Subject: [PATCH] fixed timeout issue --- frontend/src/Api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Api.js b/frontend/src/Api.js index e9c31ac..e9bd60d 100644 --- a/frontend/src/Api.js +++ b/frontend/src/Api.js @@ -4,7 +4,7 @@ const SERVER_URL = 'http://localhost:9000' const instance = axios.create({ baseURL : SERVER_URL, - timeout: 1000 + timeout: 0 }) export default {