Skip to content

Commit

Permalink
Hotfix 🔧 Fix Password Reset Route (#229)
Browse files Browse the repository at this point in the history
* Change route type

* Bump version
  • Loading branch information
JeronimoMendes authored May 31, 2022
1 parent 14fea79 commit e0af694
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "1.0.2",
"version": "1.0.3",
"private": true,
"scripts": {
"start": "react-scripts start",
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ function App() {
component={SubmittedQuestions}
/>
<AuthRoute path='/perfil' component={ProfilePage} />
<AuthRoute
<Route
path='/password/reset'
component={PasswordResetPage}
/>
<AuthRoute
<Route
path='/password/reset/confirm/:uid/:token'
component={PasswordResetConfirmPage}
/>
Expand Down

0 comments on commit e0af694

Please sign in to comment.