Enhancement 530174 - Home view: Show closed notifications for the last week
diff --git a/src/app/lists/finished-notifications/finished-notifications.component.ts b/src/app/lists/finished-notifications/finished-notifications.component.ts
index 8fba337..9410e1e 100644
--- a/src/app/lists/finished-notifications/finished-notifications.component.ts
+++ b/src/app/lists/finished-notifications/finished-notifications.component.ts
@@ -45,7 +45,7 @@
       this.endDate = new Date(dateRange.dateTo);
     } else {
       this.startDate = new Date();
-      this.startDate.setHours(this.startDate.getHours() - 24);
+      this.startDate.setHours(this.startDate.getHours() - 168);
       this.startDate.setHours(0);
       this.startDate.setMinutes(0);
       this.startDate.setSeconds(0);