From 38fb0f586e106812395696ebc1f057ef963c3f21 Mon Sep 17 00:00:00 2001 From: Ronni Baslund Date: Wed, 10 Jun 2026 22:20:33 +0200 Subject: [PATCH] fix(portal): checks map includes the autodiscovery kind DomainView.checks was a hardcoded five-kind union, so indexing it with the new autodiscovery RecordKey failed the portal typecheck (CI red on f6bac10). Use Record. --- apps/portal/composables/useDomains.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/portal/composables/useDomains.ts b/apps/portal/composables/useDomains.ts index 8505a91..3431143 100644 --- a/apps/portal/composables/useDomains.ts +++ b/apps/portal/composables/useDomains.ts @@ -31,7 +31,7 @@ export interface DomainView { stalwartProvisioned: boolean stalwartError?: string mailboxes: number - checks: Record<'ownership' | 'mx' | 'spf' | 'dkim' | 'dmarc', RecordStatus> + checks: Record records: DomainRecordView[] lastCheckedAt?: string }