Remove alert on success
This commit is contained in:
parent
d0d9a7ac4c
commit
baa48f86e0
1 changed files with 0 additions and 3 deletions
|
@ -109,9 +109,6 @@ export default class Login extends React.Component {
|
||||||
dismissKeyboard();
|
dismissKeyboard();
|
||||||
checkToken(this.state.token).then(function (isValid) {
|
checkToken(this.state.token).then(function (isValid) {
|
||||||
if (isValid) {
|
if (isValid) {
|
||||||
Alert.alert('Valid',
|
|
||||||
'Token accepted!',
|
|
||||||
[ {text: 'OK' }]);
|
|
||||||
set(this.state.token).then(this.proceed);
|
set(this.state.token).then(this.proceed);
|
||||||
} else {
|
} else {
|
||||||
Alert.alert('Invalid',
|
Alert.alert('Invalid',
|
||||||
|
|
Reference in a new issue