From 55fc6e51c77f7b599b4f3f453ac863a43377a2af Mon Sep 17 00:00:00 2001 From: oh3vci Date: Thu, 17 Mar 2022 00:20:56 +0900 Subject: [PATCH] Fix typo in example --- example/NotificationsExampleApp.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example/NotificationsExampleApp.tsx b/example/NotificationsExampleApp.tsx index 4ff145534..d8774a201 100644 --- a/example/NotificationsExampleApp.tsx +++ b/example/NotificationsExampleApp.tsx @@ -21,7 +21,7 @@ export default function NotificationsExampleApp() { useEffect(() => { registerNotificationEvents(); setCategories(); - getInitialNotifaction(); + getInitialNotification(); }, []) const registerNotificationEvents = () => { @@ -121,7 +121,7 @@ export default function NotificationsExampleApp() { }) } - const getInitialNotifaction = async () => { + const getInitialNotification = async () => { const initialNotification = await Notifications.getInitialNotification(); if (initialNotification) { setNotifications([initialNotification, ...notifications]); @@ -174,7 +174,7 @@ export default function NotificationsExampleApp() { }