fix: 修复简报收集器URL错误
All checks were successful
Egg CI/CD / build-image (push) Successful in 21s
Egg CI/CD / deploy (push) Successful in 22s

This commit is contained in:
zhaoyingbo 2024-05-17 13:13:29 +00:00
parent a0a80bbee8
commit ef3cb5855f

View File

@ -8,7 +8,7 @@ export const fetchCIMonitor = async () => {
};
export const fetchReportCollector = async (msg: string) => {
const url = `https://report.imoaix.cn/summary?msg=${msg}`;
const url = `https://report.imoaix.cn/report?msg=${msg}`;
try {
const res = await fetch(url);
return ((await res.json()) as string) || "";