From 996072039b21cb2df4e942d0ce7bb8026966c95d Mon Sep 17 00:00:00 2001 From: kemuru <102478601+kemuru@users.noreply.github.com> Date: Thu, 7 Nov 2024 23:29:13 +0100 Subject: [PATCH] chore: change neo tag to beta --- web/src/layout/Header/Logo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/layout/Header/Logo.tsx b/web/src/layout/Header/Logo.tsx index 956bc5771..2d94cf174 100644 --- a/web/src/layout/Header/Logo.tsx +++ b/web/src/layout/Header/Logo.tsx @@ -35,7 +35,7 @@ const CourtBadge: React.FC = () => { const { text, color } = useMemo<{ text?: string; color?: keyof Theme }>(() => { switch (getArbitratorType()) { case ArbitratorTypes.neo: - return { text: "Neo", color: "paleCyan" }; + return { text: "Beta", color: "paleCyan" }; case ArbitratorTypes.university: return { text: "Uni", color: "limeGreen" }; }