Skip to content

Commit

Permalink
update component name
Browse files Browse the repository at this point in the history
  • Loading branch information
taraepp committed Aug 15, 2024
1 parent ecce022 commit 74b3e4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/core-web/src/components/mine/Permit/ViewPermit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useDispatch, useSelector } from "react-redux";
import { getPermitByGuid } from "@mds/common/redux/selectors/permitSelectors";
import { IMine, IPermit } from "@mds/common";
import ViewPermitOverview from "@/components/mine/Permit/ViewPermitOverview";
import ViewPermitConditions from "@/components/mine/Permit/PermitConditions";
import PermitConditions from "@/components/mine/Permit/PermitConditions";

import { fetchPermits } from "@mds/common/redux/actionCreators/permitActionCreator";
import { getMineById } from "@mds/common/redux/selectors/mineSelectors";
Expand Down Expand Up @@ -62,7 +62,7 @@ const ViewPermit: FC = () => {
enablePermitConditionsTab && {
key: "conditions",
label: <>{getConditionBadge()} Permit Conditions</>,
children: <ViewPermitConditions latestAmendment={latestAmendment} />,
children: <PermitConditions latestAmendment={latestAmendment} />,
disabled: !canViewConditions,
},
].filter(Boolean);
Expand Down

0 comments on commit 74b3e4f

Please sign in to comment.