Revert "Merge pull request #2482 from AreYouRlyScared/fix-2386"

This reverts commit a967dbc6fc, reversing
changes made to 289de72aca.
This commit is contained in:
Dane Everitt 2020-10-12 20:59:11 -07:00
parent 49ddd63dbd
commit 7a0ac1d5c2
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 3 additions and 6 deletions

View file

@ -1,6 +1,6 @@
import React, { useEffect } from 'react';
import ReactGA from 'react-ga';
import { Route, RouteComponentProps, Switch, Redirect } from 'react-router-dom';
import { Route, RouteComponentProps, Switch } from 'react-router-dom';
import LoginContainer from '@/components/auth/LoginContainer';
import ForgotPasswordContainer from '@/components/auth/ForgotPasswordContainer';
import ResetPasswordContainer from '@/components/auth/ResetPasswordContainer';
@ -15,7 +15,6 @@ export default ({ location, history, match }: RouteComponentProps) => {
return (
<div className={'pt-8 xl:pt-32'}>
<Switch location={location}>
<Redirect from="/:url*(/+)" to={location.pathname.slice(0, -1)} />
<Route path={`${match.path}/login`} component={LoginContainer} exact/>
<Route path={`${match.path}/login/checkpoint`} component={LoginCheckpointContainer}/>
<Route path={`${match.path}/password`} component={ForgotPasswordContainer} exact/>