Fix pnpm build

This commit is contained in:
UltraLionFr
2025-08-20 16:41:27 +02:00
parent 3de3e6f35a
commit 9730e21999
16 changed files with 134 additions and 83 deletions
+2 -1
View File
@@ -1,12 +1,13 @@
"use client";
import type { Player } from "@lordicon/react";
import { motion } from "framer-motion";
import { useRouter } from "next/navigation";
import { useRef } from "react";
import LordIcon from "./LordIcon";
export default function Header({ user }: { user?: string | null }) {
const plusIconRef = useRef<any>(null);
const plusIconRef = useRef<Player | null>(null);
const router = useRouter();
return (