From a69663e7e61e844fb2e05cd06dffaf32c2d036fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Ist=C3=BAriz?= Date: Wed, 11 Oct 2023 08:34:44 -0500 Subject: [PATCH] Update useSystemStatus.tsx --- src/services/hooks/useSystemStatus.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/hooks/useSystemStatus.tsx b/src/services/hooks/useSystemStatus.tsx index ad8b6ec4e483..9a8dc06b2c18 100644 --- a/src/services/hooks/useSystemStatus.tsx +++ b/src/services/hooks/useSystemStatus.tsx @@ -65,7 +65,7 @@ function useSystemStatus() { } async function logs(key: string): Promise { - const response = await fetch(`https://raw.githubusercontent.com/mehatab/fettle/main/public/status/${key}_report.log`); + const response = await fetch(`https://raw.githubusercontent.com/OSMLatam/status/main/public/status/${key}_report.log`); const text = await response.text(); const lines = text.split("\n"); try {