mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Fix jam request
This commit is contained in:
parent
f6c1ce75a6
commit
3ca54b39a1
2 changed files with 4 additions and 4 deletions
|
@ -114,7 +114,7 @@ export default function JamHeader() {
|
|||
{activeJamResponse?.phase === "Suggestion" && (
|
||||
<div className="bg-gray-100 dark:bg-gray-800 p-4 text-center rounded-b-2x">
|
||||
<a
|
||||
href="/theme-suggestions"
|
||||
href="/theme-suggestions"
|
||||
className="text-blue-300 dark:text-blue-500 hover:underline font-semibold"
|
||||
>
|
||||
Go to Theme Suggestion
|
||||
|
@ -125,7 +125,7 @@ export default function JamHeader() {
|
|||
{activeJamResponse?.phase === "Survival" && (
|
||||
<div className="bg-gray-100 dark:bg-gray-800 p-4 text-center rounded-b-2x">
|
||||
<a
|
||||
href="/theme-slaughter"
|
||||
href="/theme-slaughter"
|
||||
className="text-blue-300 dark:text-blue-500 hover:underline font-semibold"
|
||||
>
|
||||
Go to Theme Survival
|
||||
|
@ -136,7 +136,7 @@ export default function JamHeader() {
|
|||
{activeJamResponse?.phase === "Voting" && (
|
||||
<div className="bg-gray-100 dark:bg-gray-800 p-4 text-center rounded-b-2x">
|
||||
<a
|
||||
href="/theme-voting"
|
||||
href="/theme-voting"
|
||||
className="text-blue-300 dark:text-blue-500 hover:underline font-semibold"
|
||||
>
|
||||
Go to Theme Voting
|
||||
|
|
|
@ -31,7 +31,7 @@ export async function getCurrentJam(): Promise<ActiveJamResponse | null> {
|
|||
// 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);
|
||||
|
|
Loading…
Reference in a new issue