From 0777042275893f57837e22235045ee81f8c3a1d7 Mon Sep 17 00:00:00 2001 From: Nicole Garcia Date: Mon, 21 Nov 2022 14:43:15 -0500 Subject: [PATCH] refactor: TTA-232-change-warning-message-when-entries-summary-are-not-found --- src/app/modules/time-clock/store/entry.effects.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/modules/time-clock/store/entry.effects.ts b/src/app/modules/time-clock/store/entry.effects.ts index f9fc9d76..472f9db7 100644 --- a/src/app/modules/time-clock/store/entry.effects.ts +++ b/src/app/modules/time-clock/store/entry.effects.ts @@ -46,7 +46,7 @@ export class EntryEffects { this.entryService.summary().pipe( map((response) => { if (!response){ - this.toastrService.warning('Your summary information could not be loaded'); + this.toastrService.warning("Hey! you don't have any time entries this month yet."); } return new actions.LoadEntriesSummarySuccess(response); }),