diff --git a/src/ui/WorkInProgressRoot.tsx b/src/ui/WorkInProgressRoot.tsx
index 7a4c1802a..b1d2cf871 100644
--- a/src/ui/WorkInProgressRoot.tsx
+++ b/src/ui/WorkInProgressRoot.tsx
@@ -37,23 +37,12 @@ export function WorkInProgressRoot(): React.ReactElement {
if (player.workType == CONSTANTS.WorkTypeFaction) {
const faction = Factions[player.currentWorkFactionName];
- if (!faction) {
- return (
-
-
-
- Something has gone wrong, you cannot work for {player.currentWorkFactionName || "(Faction not found)"} at
- this time.
-
-
-
- );
- }
if (!faction) {
return (
<>
- You have not joined {faction} yet!
+ You have not joined {player.currentWorkFactionName || "(Faction not found)"} yet or cannot work at this time,
+ please try again if you think this should have worked
>