File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,12 @@ export default function Home() {
25
25
prData = ( await import ( "../data/check_stats.json" ) ) . default ;
26
26
} else {
27
27
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"
29
30
) . then ( ( res ) => res . json ( ) ) ;
30
31
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"
32
34
) . then ( ( res ) => res . json ( ) ) ;
33
35
}
34
36
You can’t perform that action at this time.
0 commit comments