Few more bug fixes

This commit is contained in:
John Lyon-Smith
2018-04-23 15:16:56 -07:00
parent 24420935a1
commit 30a66e4e34
4 changed files with 34 additions and 28 deletions

View File

@@ -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"} />} />
}