Skip to content

Commit

Permalink
remove createnewpassword from app.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
lanaramadan committed Apr 30, 2024
1 parent 5debe89 commit 957dd1f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import AccountPendingApproval from './components/Authentication/EmailAction';
import AwaitConfirmation from './components/Authentication/AwaitConfirmation';
import ForgotPasswordConfirmation from './components/Authentication/ForgotPasswordConfirmation';
import CreateNewPasswordConfirmation from './components/Authentication/CreateNewPasswordConfirmation';
import CreateNewPassword from './components/Authentication/CreateNewPassword';
import AUTH_ROLES from './utils/auth_config';
import ProtectedRoute from './utils/ProtectedRoute';
import Catalog from './pages/Catalog/Catalog';
Expand Down Expand Up @@ -58,14 +57,11 @@ const App = () => {
<Route exact path="/forgotpassword" element={<ForgotPassword />} />
<Route exact path="/signUp" element={<SignUp />} />
<Route exact path="/signUpConfirmation" element={<AccountPendingApproval redirectPath="/" />} />

<Route exact path="/emailAction" element={<EmailAction redirectPath="/" />} />
<Route exact path="/awaitConfirmation" element={<AwaitConfirmation redirectPath="/" />} />
<Route exact path="/forgotPasswordConfirmation" element={<ForgotPasswordConfirmation redirectPath="/" />} />
<Route exact path="/createNewPassword" element={<CreateNewPassword redirectPath="/" />} />
<Route exact path="/createNewPasswordConfirmation" element={<CreateNewPasswordConfirmation redirectPath="/" />} />


<Route
exact
path="/catalog"
Expand Down

0 comments on commit 957dd1f

Please sign in to comment.