From 71a94a765aae957a18ba64f70b8a45ba1349320e Mon Sep 17 00:00:00 2001 From: Yves Gugger Date: Sun, 14 Dec 2025 09:20:58 +0100 Subject: [PATCH] fix: Add is_valid to SSL in simulated health reports --- frontend/src/app/terminal/portfolio/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/terminal/portfolio/page.tsx b/frontend/src/app/terminal/portfolio/page.tsx index 2c15be6..72b93ba 100755 --- a/frontend/src/app/terminal/portfolio/page.tsx +++ b/frontend/src/app/terminal/portfolio/page.tsx @@ -178,7 +178,7 @@ export default function PortfolioPage() { recommendations: [], dns: { has_a: true, has_ns: true, has_mx: false, nameservers: [], is_parked: false }, http: { is_reachable: true, status_code: 200, is_parked: false }, - ssl: { has_certificate: true }, + ssl: { has_certificate: true, is_valid: true }, } setHealthReports(prev => ({ ...prev, [domain.id]: simulatedReport })) }) @@ -204,7 +204,7 @@ export default function PortfolioPage() { recommendations: [], dns: { has_a: true, has_ns: true, has_mx: false, nameservers: [], is_parked: false }, http: { is_reachable: true, status_code: 200, is_parked: false }, - ssl: { has_certificate: true }, + ssl: { has_certificate: true, is_valid: true }, } setHealthReports(prev => ({ ...prev, [domainId]: simulatedReport })) showToast('Health check complete', 'success')