Skip to content

Commit

Permalink
chore: update grid actions to updated breadcrumbs
Browse files Browse the repository at this point in the history
  • Loading branch information
shon-button committed Dec 11, 2024
1 parent 1091030 commit ab87878
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,7 @@ const ActionCell = (params: GridRenderCellParams) => {
return (
<Button
color="primary"
onClick={() =>
router.push(
`reports/${reportId}/review-operator-data?reports_title=${params.row.name}`,
)
}
onClick={() => router.push(`reports/${reportId}/review-operator-data`)}
>
Continue
</Button>
Expand All @@ -103,9 +99,7 @@ const ActionCell = (params: GridRenderCellParams) => {
OperationId,
reportingYearObj.reporting_year,
);
router.push(
`reports/${newReportId}/review-operator-data?reports_title=${params.row.name}`,
);
router.push(`reports/${newReportId}/review-operator-data`);
}}
>
Start
Expand Down

0 comments on commit ab87878

Please sign in to comment.