fix: some pages not working properly with new db

This commit is contained in:
2025-03-21 21:15:02 +01:00
parent fe3a146bf1
commit e736375d17
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
import LiveStream from "@/components/app/Livestream/Livestream";
import prisma from "@/lib/db";
import prisma from '@hctv/db';
export default async function Page({ params }: { params: Promise<{ username: string }> }) {
const { username } = await params;

View File

@@ -1,5 +1,5 @@
import { validateRequest } from "@/lib/auth";
import prisma from "@/lib/db";
import prisma from '@hctv/db';
import { NextRequest } from "next/server";
export async function POST(request: NextRequest) {