refactor: reload billing data and update awaiting approval navigation to be awaitable.

This commit is contained in:
Achintha Isuru
2026-02-28 17:31:57 -05:00
parent 53b612851c
commit 26c4327ec5
3 changed files with 5 additions and 3 deletions

View File

@@ -102,8 +102,8 @@ extension ClientNavigator on IModularNavigator {
}
/// Navigates to the full list of invoices awaiting approval.
void toAwaitingApproval({Object? arguments}) {
safePush(ClientPaths.awaitingApproval, arguments: arguments);
Future<Object?> toAwaitingApproval({Object? arguments}) {
return safePush(ClientPaths.awaitingApproval, arguments: arguments);
}
/// Navigates to the Invoice Ready page.