diff --git a/with-twitter-auth/app/App.js b/with-twitter-auth/app/App.js index 7c4ec51..78d4378 100644 --- a/with-twitter-auth/app/App.js +++ b/with-twitter-auth/app/App.js @@ -45,7 +45,7 @@ export default function App() { // Validate if the auth session response is successful // Note, we still receive a `authResponse.type = 'success'`, thats why we need to check on the params itself if (authResponse.params && authResponse.params.denied) { - return setError('AuthSession was not successful, user did not authorize the app'); + return setError('AuthSession failed, user did not authorize the app'); } // Step #3 - when the user (successfully) authorized the app, we will receive a verification code.