From 8cef235f83b66d19b6a8b9a882528d37e6229eda Mon Sep 17 00:00:00 2001 From: Kanishk Sachdev Date: Fri, 24 Oct 2025 00:16:27 -0400 Subject: [PATCH] Update prize descriptions and add extra prize information for clarity --- src/components/PrizesChallenges/index.tsx | 9 +++++---- src/lib/api/judging/entity.ts | 3 ++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/components/PrizesChallenges/index.tsx b/src/components/PrizesChallenges/index.tsx index c85a04d6..49f96af9 100644 --- a/src/components/PrizesChallenges/index.tsx +++ b/src/components/PrizesChallenges/index.tsx @@ -93,18 +93,18 @@ const PrizesChallenges: React.FC = () => { /> { amount: "$25 Amazon Gift Card per team member (up to 5)", }, ]} + extra="Total prize pool: $870 in cash" /> - + ) : (
diff --git a/src/lib/api/judging/entity.ts b/src/lib/api/judging/entity.ts index 3f28be6f..266a1940 100644 --- a/src/lib/api/judging/entity.ts +++ b/src/lib/api/judging/entity.ts @@ -33,7 +33,8 @@ export interface ProjectCreateEntity export interface ProjectPatchEntity extends Partial {} export const PROJECT_CATEGORIES = [ - "Beginner Track", + "Best UX/UI Design", + "Nittany AI Challenge", ] as const; export type ProjectCategory = (typeof PROJECT_CATEGORIES)[number];