This commit is contained in:
Gabriel Augendre 2024-09-15 14:05:00 +02:00
parent 846956dff5
commit e99f33d84d

View file

@ -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<ITclFilteredApi>(`https://tcl.augendre.info/stop/${this.monitoredTclStopId}`, {
const tclPromise = http<ITclFilteredApi>(`https://tcl.augendre.info/tcl/stop/${this.monitoredTclStopId}`, {
method: "GET",
headers: headers
});