Skip to content

Commit 1dd2890

Browse files
authored
Merge pull request #2350 from airqo-platform/disable-profile-page
Remove commented-out navigation code from DashboardPage
2 parents 53444e6 + 32ca3d5 commit 1dd2890

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

mobile-v3/lib/src/app/dashboard/pages/dashboard_page.dart

+7-7
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,13 @@ class _DashboardPageState extends State<DashboardPage> {
9797
),
9898
SizedBox(width: 8),
9999
GestureDetector(
100-
onTap: () => Navigator.of(context).push(
101-
MaterialPageRoute(
102-
builder: (context) {
103-
return ProfilePage();
104-
},
105-
),
106-
),
100+
// onTap: () => Navigator.of(context).push(
101+
// MaterialPageRoute(
102+
// builder: (context) {
103+
// return ProfilePage();
104+
// },
105+
// ),
106+
// ),
107107
child: BlocBuilder<UserBloc, UserState>(
108108
builder: (context, state) {
109109
if (state is UserLoaded) {

0 commit comments

Comments
 (0)