From a1e6d70ec97766889b0491e3eeaeb111f885b0bf Mon Sep 17 00:00:00 2001 From: Eric Vicenti Date: Wed, 1 Apr 2015 13:31:10 -0700 Subject: [PATCH] [ReactNative] Fix doc page for PushNotificationIOS --- Examples/UIExplorer/PushNotificationIOSExample.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/UIExplorer/PushNotificationIOSExample.js b/Examples/UIExplorer/PushNotificationIOSExample.js index becdfea20..bd6109f1f 100644 --- a/Examples/UIExplorer/PushNotificationIOSExample.js +++ b/Examples/UIExplorer/PushNotificationIOSExample.js @@ -74,7 +74,7 @@ class NotificationExample extends React.Component { _onNotification(notification) { AlertIOS.alert( 'Notification Received', - `Alert message: ${notification.getMessage()}`, + 'Alert message: ' + notification.getMessage(), [{ text: 'Dismiss', onPress: null,