From 382e357731f02baf2c3dcf6b8f59cff4770f139c Mon Sep 17 00:00:00 2001 From: Akash Date: Sun, 22 Sep 2024 12:22:45 +0530 Subject: [PATCH] fixed utils package Signed-off-by: Akash --- app/(default)/pbctf/page.tsx | 2 +- components.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/(default)/pbctf/page.tsx b/app/(default)/pbctf/page.tsx index 60c8079..a5c92c4 100644 --- a/app/(default)/pbctf/page.tsx +++ b/app/(default)/pbctf/page.tsx @@ -1,7 +1,7 @@ "use client"; import PBCTFForm from "@/components/forms/pbctfForm"; import DotPattern from "@/components/magicui/dot-pattern"; -import { cn } from "@/lib/utils"; +import { cn } from "@/lib/server/utils"; import { onAuthStateChanged } from "firebase/auth"; import { auth } from "@/Firebase"; import { useEffect } from "react"; diff --git a/components.json b/components.json index b40de82..50d6242 100644 --- a/components.json +++ b/components.json @@ -12,7 +12,7 @@ }, "aliases": { "components": "@/components", - "utils": "@/lib/utils", + "utils": "@/lib/server/utils", "ui": "@/components/ui", "magicui": "@/components/magicui" }