From 7e714e7cdaab4f0469f472ef474f985dd3468061 Mon Sep 17 00:00:00 2001 From: Were Samson Bruno Date: Mon, 29 Jan 2024 23:33:40 +0000 Subject: [PATCH] fixed routes/imports of record contribution screens --- lib/ui/home/home/contributions/tontine_contribution_page.dart | 2 +- lib/ui/home/home/tontines/dashboard_page.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ui/home/home/contributions/tontine_contribution_page.dart b/lib/ui/home/home/contributions/tontine_contribution_page.dart index 685a3a0..6d22faf 100644 --- a/lib/ui/home/home/contributions/tontine_contribution_page.dart +++ b/lib/ui/home/home/contributions/tontine_contribution_page.dart @@ -90,7 +90,7 @@ class _RecordContributions extends State { // Navigate to the RecordContribution screen Navigator.push( context, - MaterialPageRoute(builder: (context) => RecordContribution()), + MaterialPageRoute(builder: (context) => RecordContributionsPage()), ); }, style: ElevatedButton.styleFrom( diff --git a/lib/ui/home/home/tontines/dashboard_page.dart b/lib/ui/home/home/tontines/dashboard_page.dart index e3b6225..b7235e2 100644 --- a/lib/ui/home/home/tontines/dashboard_page.dart +++ b/lib/ui/home/home/tontines/dashboard_page.dart @@ -72,7 +72,7 @@ class _DashboardPageState extends State with SingleTickerProvider children: [ InviteMembersPage (), MakeContributionsPage(), - RecordContribution(), + RecordContributionsPage(), GroupInformation(), ], ),