diff --git a/src/Work/CompanyWork.tsx b/src/Work/CompanyWork.tsx
index 40b859daa..dca07d85c 100644
--- a/src/Work/CompanyWork.tsx
+++ b/src/Work/CompanyWork.tsx
@@ -51,13 +51,15 @@ export class CompanyWork extends Work {
return false;
}
finish(): void {
- dialogBoxCreate(
- <>
- You finished working for {this.companyName}
-
- You have reputation with them.
- >,
- );
+ if (!this.singularity) {
+ dialogBoxCreate(
+ <>
+ You finished working for {this.companyName}
+
+ You have reputation with them.
+ >,
+ );
+ }
}
APICopy(): Record {