a fun bot for the hc slack
at main 429 B view raw
1import type { Project } from "../features/api/routes/projects"; 2 3export function getCategoryLabel(category: Project["projectCategory"]): string { 4 const categoryMap: Record<Project["projectCategory"], string> = { 5 hardware: "Hardware", 6 hardware_software: "Hardware + Software", 7 website: "Website", 8 app: "App", 9 game: "Game", 10 art_design: "Art & Design", 11 other: "Other", 12 }; 13 return categoryMap[category] || "Other"; 14}