diff --git a/ts/congrats/index.ts b/ts/congrats/index.ts index a87f1acef..c704cad6d 100644 --- a/ts/congrats/index.ts +++ b/ts/congrats/index.ts @@ -26,8 +26,12 @@ export async function setupCongrats(): Promise { // refresh automatically if a custom area not provided if (!customMountPoint) { setInterval(async () => { - const info = await congratsInfo({}); - page.$set({ info }); + try { + const info = await congratsInfo({}); + page.$set({ info }); + } catch { + console.log("congrats fetch failed"); + } }, 60000); }