Revert "feat: Add placeholder for unimplemented features in Get Started, Home, and Profile modules"

This reverts commit 8f8c6ff2d2.
This commit is contained in:
Achintha Isuru
2026-01-24 15:36:09 -05:00
parent 8f8c6ff2d2
commit 5039743c03
5 changed files with 19 additions and 48 deletions

View File

@@ -50,11 +50,6 @@ class StaffProfileModule extends Module {
@override
void routes(RouteManager r) {
/// TODO: FEATURE_NOT_YET_IMPLEMENTED
r.child('/', child: (BuildContext context) => const SizedBox(
child: Center(
child: Text('Profile Feature Not Yet Implemented'),
),
));
r.child('/', child: (BuildContext context) => const StaffProfilePage());
}
}