From 77e2cad17983cb47d0c6c98412a40bc51dc1ab72 Mon Sep 17 00:00:00 2001 From: Jesse Katsumata Date: Wed, 27 May 2020 14:07:40 +0900 Subject: [PATCH] chore: fix example presentNotification does not take prop `fireDate`, as notification is fired immediately --- example/App.js | 1 - 1 file changed, 1 deletion(-) diff --git a/example/App.js b/example/App.js index 1f9e05d56..5f342a078 100644 --- a/example/App.js +++ b/example/App.js @@ -86,7 +86,6 @@ export const App = () => { const sendLocalNotification = () => { PushNotificationIOS.presentLocalNotification({ alertBody: 'Sample local notification', - fireDate: new Date().toISOString(), applicationIconBadgeNumber: 1, }); };