fix: Correct navigation path for bank account page and adjust module bindings

This commit is contained in:
Achintha Isuru
2026-01-24 23:19:49 -05:00
parent e2cdf0d8fa
commit 2a6570ea08
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ extension ProfileNavigator on IModularNavigator {
/// Navigates to the bank account page.
void pushBankAccount() {
pushNamed('../bank-account');
pushNamed('../bank-account/');
}
/// Navigates to the timecard page.

View File

@@ -21,7 +21,7 @@ class StaffBankAccountModule extends Module {
firebaseAuth: auth.FirebaseAuth.instance,
dataConnect: ExampleConnector.instance,
),
);
);
// Use Cases
i.addLazySingleton<GetBankAccountsUseCase>(GetBankAccountsUseCase.new);