Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
Fixed : #217
Browse files Browse the repository at this point in the history
  • Loading branch information
Vande Perre Nathan authored and PiotrFLEURY committed Aug 25, 2020
1 parent 611b366 commit 0338474
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Progress_bar : Progress bar value error
- openedListPage and new_list : change ui
- list Creation : User don't have to use the creation list page to create a list anymore
- Authentication path : The path to the authentication page is now /authentication

### Security

Expand Down
2 changes: 1 addition & 1 deletion lib/pages/forgotten_password.dart
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,6 @@ class ForgottenPasswordPageState extends State<ForgottenPasswordPage> {
}

void openAuthenticationPage(context) {
Navigator.popUntil(context, ModalRoute.withName('/'));
Navigator.popUntil(context, ModalRoute.withName('/authentication'));
}
}
2 changes: 1 addition & 1 deletion lib/pages/register-page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,6 @@ class RegisterPageState extends State<RegisterPage> {
}

void openAuthenticationPage(context) {
Navigator.popUntil(context, ModalRoute.withName('/'));
Navigator.popUntil(context, ModalRoute.withName('/authentication'));
}
}

0 comments on commit 0338474

Please sign in to comment.