feat: remove the phase in the label

This commit is contained in:
Richard Tang
2026-03-12 18:55:24 -07:00
parent f9d5f95936
commit c2c4929de8
+4 -4
View File
@@ -220,12 +220,12 @@ const MessageBubble = memo(function MessageBubble({ msg, queenPhase }: { msg: Ch
>
{isQueen
? ((msg.phase ?? queenPhase) === "running"
? "running phase"
? "running"
: (msg.phase ?? queenPhase) === "staging"
? "staging phase"
? "staging"
: (msg.phase ?? queenPhase) === "planning"
? "planning phase"
: "building phase")
? "planning"
: "building")
: "Worker"}
</span>
</div>