From 94a3d31e8da2a0ab76f4b7d5cfc297e27369d5ab Mon Sep 17 00:00:00 2001 From: Ategon Date: Wed, 22 Jan 2025 20:44:05 -0500 Subject: [PATCH] Fix prod link for getCurrentJam --- src/helpers/jam.ts | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/src/helpers/jam.ts b/src/helpers/jam.ts index c0b80ff..5b82708 100644 --- a/src/helpers/jam.ts +++ b/src/helpers/jam.ts @@ -18,28 +18,25 @@ export async function getJams(): Promise { } export async function getCurrentJam(): Promise { - try { const response = await fetch( process.env.NEXT_PUBLIC_MODE === "PROD" - ? "https://d2jam.com/api/v1/jams" + ? "https://d2jam.com/api/v1/jams/active" : "http://localhost:3005/api/v1/jams/active" ); // Parse JSON response - const data = await response.json(); - - // Return the phase and jam details - return { - phase: data.phase, - jam: data.jam, - }; - - } catch (error) { - console.error("Error fetching active jam:", error); - return null; - } + const data = await response.json(); + // Return the phase and jam details + return { + phase: data.phase, + jam: data.jam, + }; + } catch (error) { + console.error("Error fetching active jam:", error); + return null; + } } export async function joinJam(jamId: number) { @@ -53,7 +50,7 @@ export async function joinJam(jamId: number) { userSlug: getCookie("user"), }), method: "POST", - credentials: 'include', + credentials: "include", headers: { "Content-Type": "application/json", authorization: `Bearer ${getCookie("token")}`, @@ -80,7 +77,7 @@ export async function hasJoinedCurrentJam(): Promise { ? "https://d2jam.com/api/v1/participation" : "http://localhost:3005/api/v1/participation", { - credentials: 'include', + credentials: "include", headers: { Authorization: `Bearer ${getCookie("token")}`, }, @@ -92,4 +89,4 @@ export async function hasJoinedCurrentJam(): Promise { console.error("Error checking jam participation:", error); return false; } -} \ No newline at end of file +}