diff --git a/src/app/components/client/FixNavigation.tsx b/src/app/components/client/FixNavigation.tsx index c0ca2c6d66..2b9668cced 100644 --- a/src/app/components/client/FixNavigation.tsx +++ b/src/app/components/client/FixNavigation.tsx @@ -83,7 +83,7 @@ export const Steps = (props: { ); const dataBrokerStepCompleted = hasCompletedStepSection(props.data, "Scan"); - // TODO: Waiting for criteria for data brokers under maintenace to be determined + // TODO: MNTOR-3880 Waiting for criteria for data brokers under maintenace to be determined // && hasCompletedStepSection(props.data, "DataBrokerManualRemoval"); return ( diff --git a/src/app/components/client/exposure_card/ExposureCard.test.tsx b/src/app/components/client/exposure_card/ExposureCard.test.tsx index b1d467d0ec..f64da0bf60 100644 --- a/src/app/components/client/exposure_card/ExposureCard.test.tsx +++ b/src/app/components/client/exposure_card/ExposureCard.test.tsx @@ -15,7 +15,7 @@ import Meta, { DataBrokerManualRemoved, DataBrokerRemoved, DataBrokerRequestedRemoval, - // TODO: Waiting for criteria for data brokers under maintenace to be determined + // TODO: MNTOR-3880 Waiting for criteria for data brokers under maintenace to be determined // DataBrokerRemovalUnderMaintenance, // DataBrokerRemovalUnderMaintenanceFixed, } from "./ExposureCard.stories"; @@ -76,7 +76,7 @@ describe("ScanResultCard", () => { expect(innerDescription).toBeInTheDocument(); }); - // TODO: Waiting for criteria for data brokers under maintenace to be determined + // TODO: MNTOR-3880 Waiting for criteria for data brokers under maintenace to be determined // Data broker removal under maintenance // eslint-disable-next-line jest/no-commented-out-tests // it("shows the right description for a scan result card with removal under maintenance status", () => { @@ -93,7 +93,7 @@ describe("ScanResultCard", () => { // expect(innerDescription).toBeInTheDocument(); // }); - // TODO: Waiting for criteria for data brokers under maintenace to be determined + // TODO: MNTOR-3880 Waiting for criteria for data brokers under maintenace to be determined // Data broker removal under maintenance resolved // eslint-disable-next-line jest/no-commented-out-tests // it("shows the right description for a scan result card with removal under maintenance status that's been resolved", () => { @@ -122,7 +122,7 @@ describe("ScanResultCard", () => { expect(innerDescription).toBeInTheDocument(); }); - // TODO: Waiting for criteria for data brokers under maintenace to be determined + // TODO: MNTOR-3880 Waiting for criteria for data brokers under maintenace to be determined // Data broker removal under maintenance // eslint-disable-next-line jest/no-commented-out-tests // it("shows the right description for a scan result card where removal is under maintenance", () => { diff --git a/src/app/components/client/exposure_card/ScanResultCard.tsx b/src/app/components/client/exposure_card/ScanResultCard.tsx index 5738ddb3ce..0efe3776aa 100644 --- a/src/app/components/client/exposure_card/ScanResultCard.tsx +++ b/src/app/components/client/exposure_card/ScanResultCard.tsx @@ -119,7 +119,7 @@ export const ScanResultCard = (props: ScanResultCardProps) => { // Data broker cards manually resolved do not change their status to "removed"; // instead, we track them using the "manually_resolved" property. - // TODO: Waiting for criteria for data brokers under maintenace to be determined + // TODO: MNTOR-3880 Waiting for criteria for data brokers under maintenace to be determined // if (scanResult.broker_status === "removal_under_maintenance") { // if (scanResult.manually_resolved) { // return l10n.getFragment( @@ -252,7 +252,7 @@ export const ScanResultCard = (props: ScanResultCardProps) => { ); } - // TODO: Waiting for criteria for data brokers under maintenace to be determined + // TODO: MNTOR-3880 Waiting for criteria for data brokers under maintenace to be determined // if (props.scanResult.broker_status === "removal_under_maintenance") { // return {props.resolutionCta}; // } @@ -328,7 +328,7 @@ export const ScanResultCard = (props: ScanResultCardProps) => {