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() {
}
-
+
{notifications.map((notification, idx) => (
{renderNotification(notification)}