Skip to content

Commit

Permalink
fixed routes/imports of record contribution screens
Browse files Browse the repository at this point in the history
  • Loading branch information
Samsonroyal committed Jan 29, 2024
1 parent 56afd04 commit 7e714e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class _RecordContributions extends State<RecordContributions> {
// Navigate to the RecordContribution screen
Navigator.push(
context,
MaterialPageRoute(builder: (context) => RecordContribution()),
MaterialPageRoute(builder: (context) => RecordContributionsPage()),
);
},
style: ElevatedButton.styleFrom(
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/home/home/tontines/dashboard_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class _DashboardPageState extends State<DashboardPage> with SingleTickerProvider
children: <Widget>[
InviteMembersPage (),
MakeContributionsPage(),
RecordContribution(),
RecordContributionsPage(),
GroupInformation(),
],
),
Expand Down

0 comments on commit 7e714e7

Please sign in to comment.