diff --git a/Examples/UIExplorer/js/ActionSheetIOSExample.js b/Examples/UIExplorer/js/ActionSheetIOSExample.js index a65af457c..c6f923203 100644 --- a/Examples/UIExplorer/js/ActionSheetIOSExample.js +++ b/Examples/UIExplorer/js/ActionSheetIOSExample.js @@ -131,9 +131,9 @@ class ShareActionSheetExample extends React.Component { ] }, (error) => alert(error), - (success, method) => { + (completed, method) => { var text; - if (success) { + if (completed) { text = `Shared via ${method}`; } else { text = 'You didn\'t share'; @@ -172,9 +172,9 @@ class ShareScreenshotExample extends React.Component { ] }, (error) => alert(error), - (success, method) => { + (completed, method) => { var text; - if (success) { + if (completed) { text = `Shared via ${method}`; } else { text = 'You didn\'t share';