MISC: Remove extra semicolon in Job page (#2796)

The semi-colon was visible when selecting text that includes it,
rendering the game LiterallyUnplayble™
This commit is contained in:
Berdes
2026-05-22 02:43:53 +02:00
committed by GitHub
parent cd94288da0
commit b8dc41faca
+1 -1
View File
@@ -19,7 +19,7 @@ export function JobRoot(): React.ReactElement {
}
return (
<Box key={companyName} sx={{ marginBottom: "20px" }}>
<GenericLocation location={location} showBackButton={false} />;
<GenericLocation location={location} showBackButton={false} />
</Box>
);
});