Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created October 18, 2021 16:05
Show Gist options
  • Save hieptl/da5e771a27afebc223dbb1296e93683a to your computer and use it in GitHub Desktop.
Save hieptl/da5e771a27afebc223dbb1296e93683a to your computer and use it in GitHub Desktop.
Home.tsx - Logout - Ionic Chat App
...
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