Merge pull request #1280 from Tria-plc/freight/nati-2

Freight/nati 2
This commit is contained in:
Nathnael Wondisha
2026-08-13 22:16:04 +03:00
committed by GitHub
25 changed files with 1837 additions and 121 deletions

View File

@@ -242,6 +242,8 @@ export const QUERY_KEYS = {
["overview", "billing", range ?? "30d"] as const,
operationsTab: (range?: string) =>
["overview", "operations", range ?? "30d"] as const,
fleetTab: (range?: string) => ["overview", "fleet", range ?? "30d"] as const,
clearanceTab: () => ["overview", "clearance"] as const,
customersTab: (range?: string) =>
["overview", "customers", range ?? "30d"] as const,
staffTab: (range?: string) =>

View File

@@ -166,6 +166,8 @@ export const URL_CONSTANTS = {
CONTRACTS: "/overview/contracts",
BILLING: "/overview/billing",
OPERATIONS: "/overview/operations",
FLEET: "/overview/fleet",
CLEARANCE: "/overview/clearance",
CUSTOMERS: "/overview/customers",
STAFF: "/overview/staff",
},