Skip to content

Commit

Permalink
8456/opm memo executive order on gender (#8460)
Browse files Browse the repository at this point in the history
* removing gender identity fields from the app in response to OPM memo/ CDC instructions

* removing gender identity fields from the app in response to OPM memo/ CDC instructions

* removing gender identity fields from the app in response to OPM memo/ CDC instructions

* removing gender identity fields from the app in response to OPM memo/ CDC instructions

* removing gender identity fields from the app in response to OPM memo/ CDC instructions.  Breaking changes.

* removing gender identity fields from the app in response to OPM memo/ CDC instructions.  Breaking changes.

* removing gender identity fields from the app in response to OPM memo/ CDC instructions.  Breaking changes.
  • Loading branch information
DanielSass authored Jan 31, 2025
1 parent 367d5c0 commit 965382b
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 444 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ describe("CsvSchemaDocumentation tests", () => {

await user.click(hivAoeTab);

expect(screen.getAllByText("Required for Positives")).toHaveLength(3);
expect(screen.getAllByText("Required for Positives")).toHaveLength(2);
});
it("logs to App Insights on template download", async () => {
const mockTrackEvent = jest.fn();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ const CsvSchemaDocumentation: React.FC<CsvSchemaDocumentationProps> = ({
<ul>
<li>
<a
href="/assets/resources/test_results_example_10-31-2023.csv"
href="/assets/resources/test_results_example_01-31-2025.csv"
className="usa-link"
onClick={() => {
appInsights?.trackEvent({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
import React from "react";

import { FileUploadService } from "../../../fileUploadService/FileUploadService";
import { getAppInsights } from "../../TelemetryService";
import { BULK_UPLOAD_SUPPORTED_DISEASES_COPY_TEXT } from "../../../config/constants";

import UploadForm from "./UploadForm";

const DiseaseSpecificUploadContainer = () => {
const appInsights = getAppInsights();

const alert = (
<div className="usa-alert usa-alert--info margin-left-105em margin-right-105em maxw-tablet-lg">
<div className="usa-alert__body">
Expand All @@ -29,17 +26,6 @@ const DiseaseSpecificUploadContainer = () => {
>
SimpleReport online user guide
</a>
.{" "}
<a
href="https://www.simplereport.gov/assets/resources/bulk_results_upload_guide-flu_pilot.pdf"
onClick={() => {
appInsights?.trackEvent({
name: "Access bulk uploader flu guide",
});
}}
>
See more information and guidance about reporting these diseases
</a>
.
</p>
<p>
Expand All @@ -58,7 +44,7 @@ const DiseaseSpecificUploadContainer = () => {
uploadResults={FileUploadService.uploadResults}
uploadType={"Disease Specific"}
spreadsheetTemplateLocation={
"/assets/resources/test_results_example_10-31-2023.csv"
"/assets/resources/test_results_example_01-31-2025.csv"
}
uploadGuideLocation={"/results/upload/submit/guide"}
/>
Expand Down
Loading

0 comments on commit 965382b

Please sign in to comment.