From 90f1ae3d85ca43e37c2b264f7a19fb958683fb9c Mon Sep 17 00:00:00 2001 From: Haroon Khel <34969545+Haroon-Khel@users.noreply.github.com> Date: Fri, 31 Jan 2025 22:55:41 +0800 Subject: [PATCH] Remove January 2025 release banner (#3348) --- src/components/Banner/index.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/Banner/index.tsx b/src/components/Banner/index.tsx index e1b44e956..20a163077 100644 --- a/src/components/Banner/index.tsx +++ b/src/components/Banner/index.tsx @@ -1,19 +1,19 @@ import React from 'react'; const Banner = () => { - // return null; + return null; // The following is an example that can be used for future banner alert // Comment Out The Above Line ( return null ; ) and uncomment the below - return ( -
- 21st January 2025: - We are creating the January 2025 PSU binaries for Eclipse Temurin 8u442, 11.0.26, 17.0.14, 21.0.6 and 23.0.2
- You can track progress by platform. - -
- ); +// return ( +//
+// 21st January 2025: +// We are creating the January 2025 PSU binaries for Eclipse Temurin 8u442, 11.0.26, 17.0.14, 21.0.6 and 23.0.2
+// You can track progress by platform. +// +//
+// ); }; export default Banner;