From cdd98d17b1b74d2e6f23ca5b66132a0fbf92f4a8 Mon Sep 17 00:00:00 2001 From: dyzulk <66510723+dyzulk@users.noreply.github.com> Date: Thu, 8 Jan 2026 15:13:03 +0700 Subject: [PATCH] fix: satisfy nextra card type requirements (title + children) --- components/CertificateDownload.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/components/CertificateDownload.tsx b/components/CertificateDownload.tsx index 66c9a58..85fe44c 100644 --- a/components/CertificateDownload.tsx +++ b/components/CertificateDownload.tsx @@ -64,7 +64,9 @@ export function CertificateDownload() { icon={getIcon('root')} title={cert.name} href={getDownloadLink(cert) || '#'} - /> + > + {null} + ))} @@ -78,7 +80,9 @@ export function CertificateDownload() { icon={getIcon('intermediate')} title={cert.name} href={getDownloadLink(cert) || '#'} - /> + > + {null} + ))}