From 9ec49166b86d6d9e769538df58d1b9e9691acf70 Mon Sep 17 00:00:00 2001 From: Daeho Kim Date: Wed, 23 Mar 2022 05:10:37 +0900 Subject: [PATCH] Fix typo in example (#843) --- 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() { }