Skip to content

Commit

Permalink
Merge pull request #503 from USEPA/feature/add-initial-2024-prf-support
Browse files Browse the repository at this point in the history
Feature/add initial 2024 prf support
  • Loading branch information
courtneymyers authored Nov 7, 2024
2 parents fb52cba + 0f5c114 commit c700f58
Show file tree
Hide file tree
Showing 10 changed files with 1,750 additions and 79 deletions.
4 changes: 2 additions & 2 deletions app/client/src/components/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import { PRF2023 } from "@/routes/prf2023";
// import { CRF2023 } from "@/routes/crf2023";
import { Change2024 } from "@/routes/change2024";
import { FRF2024 } from "@/routes/frf2024";
// import { PRF2024 } from "@/routes/prf2024";
import { PRF2024 } from "@/routes/prf2024";
// import { CRF2024 } from "@/routes/crf2024";
import { useDialogState, useDialogActions } from "@/contexts/dialog";

Expand Down Expand Up @@ -263,7 +263,7 @@ export function App() {

<Route path="/change/2024/:id" element={<Change2024 />} />
<Route path="frf/2024/:id" element={<FRF2024 />} />
{/* <Route path="prf/2024/:id" element={<PRF2024 />} /> */}
<Route path="prf/2024/:id" element={<PRF2024 />} />
{/* <Route path="crf/2024/:id" element={<CRF2024 />} /> */}

<Route path="*" element={<Navigate to="/" replace />} />
Expand Down
6 changes: 5 additions & 1 deletion app/client/src/config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,11 @@ export const bapStatusMap = {
.set("Withdrawn", "Withdrawn")
.set("Coordinator Denied", "Not Selected")
.set("Accepted", "Selected"),
prf: new Map<string, string>(), // TODO
prf: new Map<string, string>()
.set("Needs Clarification", "Needs Clarification")
.set("Withdrawn", "Withdrawn")
.set("Coordinator Denied", "Funding Denied")
.set("Accepted", "Funding Approved"),
crf: new Map<string, string>(), // TODO
},
};
Expand Down
Loading

0 comments on commit c700f58

Please sign in to comment.