Fix prod link for getCurrentJam

This commit is contained in:
Ategon 2025-01-22 20:44:05 -05:00
parent 5462af1a5a
commit 94a3d31e8d

View file

@ -18,11 +18,10 @@ export async function getJams(): Promise<JamType[]> {
} }
export async function getCurrentJam(): Promise<ActiveJamResponse | null> { export async function getCurrentJam(): Promise<ActiveJamResponse | null> {
try { try {
const response = await fetch( const response = await fetch(
process.env.NEXT_PUBLIC_MODE === "PROD" 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" : "http://localhost:3005/api/v1/jams/active"
); );
@ -34,12 +33,10 @@ export async function getCurrentJam(): Promise<ActiveJamResponse | null> {
phase: data.phase, phase: data.phase,
jam: data.jam, jam: data.jam,
}; };
} catch (error) { } catch (error) {
console.error("Error fetching active jam:", error); console.error("Error fetching active jam:", error);
return null; return null;
} }
} }
export async function joinJam(jamId: number) { export async function joinJam(jamId: number) {
@ -53,7 +50,7 @@ export async function joinJam(jamId: number) {
userSlug: getCookie("user"), userSlug: getCookie("user"),
}), }),
method: "POST", method: "POST",
credentials: 'include', credentials: "include",
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",
authorization: `Bearer ${getCookie("token")}`, authorization: `Bearer ${getCookie("token")}`,
@ -80,7 +77,7 @@ export async function hasJoinedCurrentJam(): Promise<boolean> {
? "https://d2jam.com/api/v1/participation" ? "https://d2jam.com/api/v1/participation"
: "http://localhost:3005/api/v1/participation", : "http://localhost:3005/api/v1/participation",
{ {
credentials: 'include', credentials: "include",
headers: { headers: {
Authorization: `Bearer ${getCookie("token")}`, Authorization: `Bearer ${getCookie("token")}`,
}, },