Skip to content

Commit

Permalink
fix predictor host
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuelef committed Jul 4, 2024
1 parent 7428958 commit 34a6f2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion website/src/CompareChart.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import UmberTheme from "fusioncharts/themes/fusioncharts.theme.umber";
import CopyToClipboardButton from "./CopyToClipboardButton";

const HOST = import.meta.env.VITE_HOST;
const PREDICTOR_HOST = "https://143.47.235.108:8082";
const PREDICTOR_HOST = import.meta.env.PREDICTOR_HOST;

const YEARLY_BINNING = {
year: [1],
Expand Down
2 changes: 1 addition & 1 deletion website/src/TimeSeriesChart.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import {
// But it has reached a point where it's difficult to go over the code

const HOST = import.meta.env.VITE_HOST;
const PREDICTOR_HOST = "https://143.47.235.108:8082";
const PREDICTOR_HOST = import.meta.env.PREDICTOR_HOST;

const YEARLY_BINNING = {
year: [1],
Expand Down

0 comments on commit 34a6f2c

Please sign in to comment.