From e99f33d84d2c1408164b76d4cac5d7c013e28763 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sun, 15 Sep 2024 14:05:00 +0200 Subject: [PATCH] fix path --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index e8a22e0..16e4d1e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -90,7 +90,7 @@ class App extends React.Component<{}, IAppState> { private refresh() { const headers = new Headers(); headers.set("Authorization", `Basic ${process.env.REACT_APP_TCL_AUTH}`); - const tclPromise = http(`https://tcl.augendre.info/stop/${this.monitoredTclStopId}`, { + const tclPromise = http(`https://tcl.augendre.info/tcl/stop/${this.monitoredTclStopId}`, { method: "GET", headers: headers });