This commit is contained in:
Hymmel 2026-01-21 10:21:38 +01:00
parent 5580ad1816
commit 7f11569d26

View file

@ -4,7 +4,7 @@ import { createContext, useContext, useState, useCallback, useEffect, type React
import { useSession, signIn, signOut } from "next-auth/react"
import type { User, Ticket, TicketStatus, Room } from "./types"
const API_URL = process.env.NEXT_PUBLIC_API_URL
const API_URL = process.env.NEXT_PUBLIC_API_URL + "/api"
interface AuthContextType {
user: User | null