From b474e43b88d27fe2cd6f02b96558eac500dffa11 Mon Sep 17 00:00:00 2001 From: Marcus Aurelius <91024694+0xAurelius@users.noreply.github.com> Date: Tue, 28 Jan 2025 08:30:23 -0500 Subject: [PATCH] Fix file category values (#2418) --- carbon-projects/lib/fileCategories.ts | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/carbon-projects/lib/fileCategories.ts b/carbon-projects/lib/fileCategories.ts index eb850e262a..0da45857c9 100644 --- a/carbon-projects/lib/fileCategories.ts +++ b/carbon-projects/lib/fileCategories.ts @@ -1,6 +1,9 @@ export const fileCategories = [ - { title: "Methodology", value: "methodology" }, - { title: "Project Description Document (PDD)", value: "pdd" }, - { title: "Verifications", value: "verifications" }, - { title: "Supporting Documentation", value: "supporting-documentation" }, + { title: "Methodology", value: "Methodology" }, + { + title: "Project Description Document (PDD)", + value: "Project Description Document (PDD)", + }, + { title: "Verifications", value: "Verifications" }, + { title: "Supporting Documentation", value: "Supporting Documentation" }, ];