Bug 530173 - Home View: Show future notifications one month in advance
diff --git a/src/app/lists/future-notifications/future-notifications.component.ts b/src/app/lists/future-notifications/future-notifications.component.ts
index 2f4eae6..d6cfe29 100644
--- a/src/app/lists/future-notifications/future-notifications.component.ts
+++ b/src/app/lists/future-notifications/future-notifications.component.ts
@@ -49,6 +49,7 @@
       this.startDate.setHours(24, 0, 0, 0);
 
       this.endDate = new Date();
+      this.endDate.setMonth(this.endDate.getMonth() + 1);
       this.endDate.setHours(0, 0, 0, 0);
       this.endDate.setHours(48);
     }