diff --git a/src/components/CommercialSupportTimelines/index.js b/src/components/CommercialSupportTimelines/index.js index 01dfe4bc4..6f083a164 100644 --- a/src/components/CommercialSupportTimelines/index.js +++ b/src/components/CommercialSupportTimelines/index.js @@ -18,7 +18,6 @@ function getTimelineRows(releaseBranches) { } const patchRelease = releases[0]; - const releaseDate = new Date(patchRelease.release_date); const endOfCommunitySupportDate = previousReleaseDate; const endOfCommercialSupportDate = new Date(releaseBranch.end_of_support); @@ -34,7 +33,6 @@ function getTimelineRows(releaseBranches) { rows.push({ release: branch, patch: patchRelease.version, - releaseDate: releaseDate.toLocaleDateString("en-GB", dateOptions), endOfCommunitySupport, endOfCommercialSupport, isCommunitySupported, @@ -60,7 +58,6 @@ export function CommercialSupportTimelines() {