[MIRROR] Fix escape pod doors status in UI displaying as error (#9915)

Co-authored-by: Drathek <76988376+Drulikar@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-01-20 01:30:16 -07:00
committed by GitHub
parent 5c1ab76e5d
commit 63f9f66fcf

View File

@@ -198,6 +198,7 @@ export const DockingStatus = (props: { state: string }) => {
const dockHatch: React.JSX.Element[] = [];
dockHatch['open'] = <Box color="average">OPEN</Box>;
dockHatch['closed'] = <Box color="good">CLOSED</Box>;
dockHatch['unlocked'] = <Box color="average">UNSECURED</Box>;
dockHatch['locked'] = <Box color="good">SECURED</Box>;
return (