diff --git a/src/pages/MonitorPage.tsx b/src/pages/MonitorPage.tsx index 8e7599e..b1a40cb 100644 --- a/src/pages/MonitorPage.tsx +++ b/src/pages/MonitorPage.tsx @@ -10,6 +10,7 @@ interface ProviderRow { error?: string | null fetched_at?: string | null reset_at?: string | null + window?: string | null } interface ServerRow { @@ -173,6 +174,8 @@ expires_at=' + r.data.expires_at) {p.provider} / {p.label} · status: {p.status} {p.usage_pct !== null ? (' · usage: ' + p.usage_pct + '%') : ''} {p.reset_at ? (' · reset: ' + p.reset_at) : ''} + {p.window ? (' · window: ' + p.window) : ''} + {p.fetched_at ? (' · updated: ' + p.fetched_at) : ''} {p.error ? (' · error: ' + p.error) : ''} ))}