From 3ca54b39a1404e0461b8aee5310ea3d4218f4393 Mon Sep 17 00:00:00 2001 From: Ategon Date: Fri, 24 Jan 2025 18:44:45 -0500 Subject: [PATCH] Fix jam request --- src/components/jam-header/index.tsx | 6 +++--- src/helpers/jam.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/jam-header/index.tsx b/src/components/jam-header/index.tsx index db20660..1f39dc2 100644 --- a/src/components/jam-header/index.tsx +++ b/src/components/jam-header/index.tsx @@ -114,7 +114,7 @@ export default function JamHeader() { {activeJamResponse?.phase === "Suggestion" && (
Go to Theme Suggestion @@ -125,7 +125,7 @@ export default function JamHeader() { {activeJamResponse?.phase === "Survival" && (
Go to Theme Survival @@ -136,7 +136,7 @@ export default function JamHeader() { {activeJamResponse?.phase === "Voting" && (
Go to Theme Voting diff --git a/src/helpers/jam.ts b/src/helpers/jam.ts index 2ceeb83..0190585 100644 --- a/src/helpers/jam.ts +++ b/src/helpers/jam.ts @@ -31,7 +31,7 @@ export async function getCurrentJam(): Promise { // Return the phase and jam details return { phase: data.phase, - jam: data.jam, + jam: data.futureJam, }; } catch (error) { console.error("Error fetching active jam:", error);