We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c7a464 commit 5f98690Copy full SHA for 5f98690
dotcom-rendering/src/footballMatches.ts
@@ -269,7 +269,7 @@ const parseMatchResult = (
269
},
270
dateTimeISOString: date.value,
271
paId: feResult.id,
272
- comment: feResult.comments,
+ comment: cleanTeamName(feResult.comments ?? ''),
273
});
274
};
275
@@ -313,7 +313,7 @@ const parseLiveMatch = (
313
314
315
paId: feMatchDay.id,
316
- comment: feMatchDay.comments,
+ comment: cleanTeamName(feMatchDay.comments ?? ''),
317
status: replaceLiveMatchStatus(feMatchDay.matchStatus),
318
319
0 commit comments