From 0e2bda965e2fb39c5cd2d2068fcd3cb805b01089 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Jos=C3=A9=20Galindez?= Date: Sun, 4 Jun 2017 16:03:03 -0300 Subject: [PATCH] [update] signOut message --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index c4c6aea..f87564f 100644 --- a/src/App.js +++ b/src/App.js @@ -44,7 +44,7 @@ class App extends Component { handleLogout () { firebase.auth().signOut() - .then(result => console.log(`${result.user.email} ha iniciado sesión`)) + .then(result => console.log(`${result.user.email} ha cerrado sesión`)) .catch(error => console.log(`Error ${error.code}: ${error.message}`)); }