From c9cba8a92c70dd0782a310a06cdede1ce5a8a919 Mon Sep 17 00:00:00 2001 From: Xavier FACQ Date: Thu, 12 Oct 2023 13:51:31 +0200 Subject: [PATCH] Hide banner about Eclipse Temurin 21 to be shortly released --- src/components/Banner/index.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/Banner/index.tsx b/src/components/Banner/index.tsx index 350ad8c58..f68629760 100644 --- a/src/components/Banner/index.tsx +++ b/src/components/Banner/index.tsx @@ -1,11 +1,12 @@ import React from 'react'; const Banner = () => { - // return null; + return null; - // The following is an example that can be used for future code freezes + // 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 (
9th October 2023: @@ -18,6 +19,7 @@ const Banner = () => {
); + */ }; export default Banner;