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}; }