Skip to content

Commit

Permalink
ORV2-1596 hide page navigation for unfinished pages (#718)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikataot authored Nov 8, 2023
1 parent 0f492e2 commit 27c3cbc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,12 @@ export const ManageProfilesDashboard = React.memo(() => {
});
}

/**
* TODO: Enable Payment Information page navigation when page is ready
tabs.push({
label: "Payment Information",
component: <>TODO</>,
});
});*/

return (
<TabLayout
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,12 @@ export const ManageVehiclesDashboard = memo(() => {
label: "Trailer",
component: <List vehicleType="trailer" query={trailerQuery} companyId={companyId} />,
},
/**
* TODO: Enable Vehicle Configuration page navigation when page is ready
{
label: "Vehicle Configuration",
component: <>TODO</>,
},
},*/
];

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,12 @@ export const ManageApplicationDashboard = React.memo(() => {
label: "Expired Permits",
component: <ExpiredPermitList />,
},
/**
* Enable Applications in Review page navigation when page is ready
{
label: "Applications in Review",
component: <>TODO</>,
},
},*/
];

return (
Expand Down

0 comments on commit 27c3cbc

Please sign in to comment.