From b8dc41facaaa91f427af818d7835b7007c203717 Mon Sep 17 00:00:00 2001 From: Berdes Date: Fri, 22 May 2026 02:43:53 +0200 Subject: [PATCH] MISC: Remove extra semicolon in Job page (#2796) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The semi-colon was visible when selecting text that includes it, rendering the game LiterallyUnplayble™ --- src/Locations/ui/JobRoot.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Locations/ui/JobRoot.tsx b/src/Locations/ui/JobRoot.tsx index 1a8b20c5d..263680cc5 100644 --- a/src/Locations/ui/JobRoot.tsx +++ b/src/Locations/ui/JobRoot.tsx @@ -19,7 +19,7 @@ export function JobRoot(): React.ReactElement { } return ( - ; + ); });