Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Other references to "final-app" #3338

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export const MajorProjectTable: FC<MajorProjectTableProps> = ({
const projectSectionStatuses = (project) => {
const sections = [
{ key: "Project Description", tab: "project-description", ...project.project_summary },
{ key: "Application", tab: "final-app", ...project.major_mine_application },
{ key: "Application", tab: "app", ...project.major_mine_application },
{ key: "IRT", tab: "information-requirements-table", ...project.information_requirements },
...projectDecisionPackageEnabled
? [{ key: "Decision Package", tab: "project-decision-package", ...project.project_decision_package }]
Expand Down
2 changes: 1 addition & 1 deletion services/core-web/src/components/mine/Projects/Project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const Project: FC = () => {
let url = routes.EDIT_PROJECT.dynamicRoute(projectGuid, newActiveTab);

switch (newActiveTab) {
case "final-app":
case "app":
url = routes.PROJECT_APPLICATION.dynamicRoute(projectGuid);
break;
case "decision-package":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const NotificationDrawer = () => {
case "MajorMineApplication":
return EDIT_PROJECT.dynamicRoute(
notification.notification_document.metadata.project.project_guid,
"final-app"
"app"
);
case "EngineerOfRecord":
return MINE_TAILINGS_DETAILS.dynamicRoute(
Expand Down
Loading