web fixes codes

This commit is contained in:
amirrezaghabeli
2025-08-31 15:04:35 +03:30
parent 6f4cc67fe6
commit 471f6e3119
11 changed files with 62 additions and 37 deletions
+2 -2
View File
@@ -59,12 +59,12 @@ class TabletHomePage extends StatelessWidget {
case 1:
// Navigate to tenders
context.pop();
Router.neglect(context, () => context.go('/tenders'));
Router.neglect(context, () => TendersRouteData().go(context));
break;
case 2:
// Navigate to profile
context.pop();
Router.neglect(context, () => context.go('/profile'));
Router.neglect(context, () => ProfileRouteData().go(context));
break;
}
},