Skip to content

Commit

Permalink
Fix file category values (#2418)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAurelius authored Jan 28, 2025
1 parent b8b2b98 commit b474e43
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions carbon-projects/lib/fileCategories.ts
Original file line number Diff line number Diff line change
@@ -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" },
];

0 comments on commit b474e43

Please sign in to comment.