fix(routes): update worker home route to worker main

feat(localization): add benefits and auto-match sections in English and Spanish
fix(staff_main): handle route changes safely in StaffMainCubit
This commit is contained in:
Achintha Isuru
2026-01-24 12:30:53 -05:00
parent e2e7ad5567
commit 7cea81e99e
5 changed files with 145 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ class AppModule extends Module {
// Set the initial route to the authentication module
r.module("/", module: staff_authentication.StaffAuthenticationModule());
r.module('/worker-home', module: staff_main.StaffMainModule());
r.module('/worker-main', module: staff_main.StaffMainModule());
}
}