Skip to content

Commit be8af5c

Browse files
committed
reverted data urls back
1 parent 95dc9dc commit be8af5c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pages/index.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ export default function Home() {
2525
prData = (await import("../data/check_stats.json")).default;
2626
} else {
2727
nightlyData = await fetch(
28-
"https://raw.githubusercontent.com/a1icja/kata-dashboard-next/refs/heads/latest-dashboard-data/data/job_stats.json"
28+
"https://raw.githubusercontent.com/kata-containers/kata-containers.github.io" +
29+
"/refs/heads/latest-dashboard-data/data/job_stats.json"
2930
).then((res) => res.json());
3031
prData = await fetch(
31-
"https://raw.githubusercontent.com/a1icja/kata-dashboard-next/refs/heads/latest-dashboard-data/data/check_stats.json"
32+
"https://raw.githubusercontent.com/kata-containers/kata-containers.github.io" +
33+
"/refs/heads/latest-dashboard-data/data/check_stats.json"
3234
).then((res) => res.json());
3335
}
3436

0 commit comments

Comments
 (0)