Created
October 18, 2021 16:05
-
-
Save hieptl/da5e771a27afebc223dbb1296e93683a to your computer and use it in GitHub Desktop.
Home.tsx - Logout - Ionic Chat App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
const logout = () => { | |
const shouldLogout = window.confirm('Do you want to logout'); | |
if (shouldLogout) { | |
setIsLoading(true); | |
cometChat.logout().then( | |
() => { | |
setUser(null); | |
setSelectedConversation(null); | |
localStorage.removeItem('auth'); | |
setIsLoading(false); | |
}, (error: any) => { | |
alert('Cannot log out. Please try again'); | |
} | |
); | |
} | |
}; | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment