diff --git a/src/lib/features/productivity-report/productivity-report-view-model.ts b/src/lib/features/productivity-report/productivity-report-view-model.ts index 7bdcb2f334e8..b2090e518e13 100644 --- a/src/lib/features/productivity-report/productivity-report-view-model.ts +++ b/src/lib/features/productivity-report/productivity-report-view-model.ts @@ -48,7 +48,7 @@ export const productivityReportViewModel = ({ if (this.health < previousHealth) { return improveMessage; } - return 'You are doing a good job at keeping your project healthy by archiving stale flags'; + return null; }, healthTrendMessage() { return this.previousMonthText( diff --git a/src/lib/services/email-service.test.ts b/src/lib/services/email-service.test.ts index ab86ac287009..c28b2c6be814 100644 --- a/src/lib/services/email-service.test.ts +++ b/src/lib/services/email-service.test.ts @@ -138,7 +138,6 @@ test('Can send productivity report email', async () => { expect(content.html.includes('Productivity Report')).toBe(true); expect(content.html.includes('localhost/insights')).toBe(true); expect(content.html.includes('localhost/profile')).toBe(true); - expect(content.html.includes('doing a good job')).toBe(true); expect(content.html.includes('#68a611')).toBe(true); expect(content.html.includes('10% more than previous month')).toBe(true); expect(content.text.includes('localhost/insights')).toBe(true);