From 01dc44e3586c3c08859773a919b1f5465c9fc252 Mon Sep 17 00:00:00 2001 From: Nathan Heskew Date: Mon, 8 Sep 2025 08:24:48 -0700 Subject: [PATCH] tidy up release notes link display --- src/components/LatestPatchLink.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/LatestPatchLink.tsx b/src/components/LatestPatchLink.tsx index 5d59ad65..99ee59ea 100644 --- a/src/components/LatestPatchLink.tsx +++ b/src/components/LatestPatchLink.tsx @@ -28,5 +28,5 @@ export default function LatestPatchLink({ major, minor, label }: LatestPatchLink const href = `/release-notes/v${major}-${releaseData.pupName.toLowerCase()}/${latestPatch}`; const displayLabel = label || `${major}.${minor}`; - return [{displayLabel}]; + return {displayLabel}; }