I have a scheduled notification here like: ``` PushNotification.localNotificationSchedule({ alertTitle : "My Notification Title", alertBody :"My Notification Body", fireDate : new Date(Date.now() + (120 * 1000)) , //2 mins repeatInterval :'day' }); ``` I assume notification should be fired on daily basis. Now how do i prevent this notification after 3 days??