diff --git a/src/ui/React/CharacterOverview.tsx b/src/ui/React/CharacterOverview.tsx
index c1595c399..2c7b77de2 100644
--- a/src/ui/React/CharacterOverview.tsx
+++ b/src/ui/React/CharacterOverview.tsx
@@ -378,6 +378,7 @@ function Work(): React.ReactElement {
if (isFactionWork(Player.currentWork)) {
const factionWork = Player.currentWork;
+ details = <>Doing {factionWork.factionWorkType} work>;
header = (
<>
Working for {factionWork.factionName}
@@ -395,11 +396,7 @@ function Work(): React.ReactElement {
const companyWork = Player.currentWork;
const job = Player.jobs[companyWork.companyName];
if (!job) return <>>;
- details = (
- <>
- {job} at {companyWork.companyName}
- >
- );
+ details = <>{job}>;
header = (
<>