Keyur Gandhi
Keyur Gandhi
### Description The code for `deleteAfterGoesOff` is written in AlarmRingController's `onInit()` function. When the code is triggering, `currentlyRingingAlarm` holds the FakeAlarmModel value instead of the actual ringing alarm value. That's...
Fix: AddOrUpdateAlarmController initializing ahead of time causing multiple bugsArchitectural change
### Description AddOrUpdateAlarmController is initialized with bottomNavigationBarBindings instead of the AddOrUpdateAlarmView, due to a dependency issue with InputTimeController. It depends on both AddOrUpdateAlarmController and TimerController, and gets initialized in the...
### Description Steps to reproduce the issue: 1. create an alarm with the `deleteAfterGoesOff` option enabled. 2. Let the alarm Ring 3. After alarm dismissal, the same alarm will be...
### Description `AddOrUpdateAlarmController` should be initialised with the `AddOrUpdateAlarmView`. instead, it is initialising with bottomNavigationBarBindings.  The main reason behind this is the `InputTimeController`. It has a dependency on both...