Skip to content

Commit

Permalink
Fix improper login
Browse files Browse the repository at this point in the history
  • Loading branch information
micahlt committed Mar 7, 2024
1 parent d949fdf commit a99cfd9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ android {
applicationId "com.micahlindley.offsides"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 6
versionName "0.3.0"
versionCode 7
versionName "0.3.1"
}
signingConfigs {
debug {
Expand Down
2 changes: 1 addition & 1 deletion docs/latest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"latestVersion": "0.3.0"
"latestVersion": "0.3.1"
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "offsides",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"scripts": {
"android": "react-native run-android",
Expand Down
2 changes: 1 addition & 1 deletion src/screens/LoginScreen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function LoginScreen({}) {
setLocalToken(res.token);
await AsyncStorage.setItem('userToken', res.token);
await API.setDeviceID(res.token);
setPhase('verifyEmail');
setPhase('registerEmail');
} else {
throw new Error('Failed to set age.');
}
Expand Down

0 comments on commit a99cfd9

Please sign in to comment.