Skip to content

Commit 5afd6d8

Browse files
committed
fix env var link
1 parent 01dd36b commit 5afd6d8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/components/ui/ModelCard.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
};
1616
}
1717
export let entry: ModelCardProps["entry"];
18-
export let chatAppUrl = "https://chat.swissai.cscs.ch";
18+
export let chatAppUrl: string;
1919
2020
const logoUrl = getModelLogo(entry.data.title);
2121
const metricsUrl = getModelMetricsUrl(entry.data.title);

frontend/src/components/ui/ModelList.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import { getApiUrl } from "../../lib/config";
55
import { getModelTier } from "../../lib/modelMetrics";
66
7-
export let chatAppUrl = "https://chat.swissai.cscs.ch";
7+
export let chatAppUrl;
88
99
let models = [];
1010
let modelCount = 0;

0 commit comments

Comments
 (0)