CONTRACT: Remove " "s from .getDescription() result (#1525)

This commit is contained in:
gmcew 2024-07-27 23:42:28 +01:00 committed by GitHub
parent d4f3cf7d81
commit ad5e2b0fe5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -129,7 +129,7 @@ export class CodingContract {
}
getDescription(): string {
return CodingContractTypes[this.type].desc(this.data);
return CodingContractTypes[this.type].desc(this.data).replaceAll(" ", " ");
}
getDifficulty(): number {