Few more bug fixes
This commit is contained in:
@@ -3,5 +3,5 @@ import { Route, Redirect } from "react-router-native"
|
||||
|
||||
export const DefaultRoute = () => {
|
||||
// NOTE: When working on the app, change this to the page you are working on
|
||||
return <Route render={() => <Redirect to={"/workItem"} />} />
|
||||
return <Route render={() => <Redirect to={"/home"} />} />
|
||||
}
|
||||
|
||||
@@ -96,7 +96,7 @@ export class Login extends React.Component {
|
||||
let { history } = this.props
|
||||
|
||||
if (obj) {
|
||||
this.setState({ waitModal: { message: "Loggin In..." } })
|
||||
this.setState({ waitModal: { message: "Logging In..." } })
|
||||
api
|
||||
.login(obj.email.trim(), obj.password, obj.rememberMe)
|
||||
.then((user) => {
|
||||
|
||||
Reference in New Issue
Block a user