diff --git a/server.go b/server.go index 6e4347d..a9c7409 100644 --- a/server.go +++ b/server.go @@ -38,7 +38,7 @@ func showCharts(w http.ResponseWriter, r *http.Request) { } templater, err := template.ParseFiles("webapp/dist/charts.html") if internalErrorOnErr(fmt.Errorf("couldn't parse the template: %w", err), w, r) { return } - err = templater.Execute(w, ROOT_URL + "/show") + err = templater.Execute(w, ROOT_URL) internalErrorOnErr(err, w, r) }