removed check route

This commit is contained in:
pepper 2021-01-27 20:07:36 -05:00
parent a4772d3626
commit 03bd06745b

View File

@ -15,7 +15,6 @@ import IDSingle from "./root/Pages/IDSingle";
// Components
import Home from "./root/Home";
import Navigation from "./root/Navigation";
import Autobook from "./root/Pages/Autobook";
// Main app component, react-router comes from here,
// and links to all of the sub pages
@ -74,7 +73,6 @@ class App extends Component {
path="/booked"
render={(props) => <GenericList {...props} APILINK="/booked/" />}
/>
<Route exact path="/check" component={Autobook} />
</Switch>
</div>
</Router>