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);