fix: add missing useRef import

This commit is contained in:
Unchained
2026-03-28 18:44:07 +02:00
parent b78b081d29
commit 7d63f4fbcd

View File

@@ -1,6 +1,6 @@
"use client"; "use client";
import { useEffect, useState } from "react"; import { useEffect, useState, useRef } from "react";
import { motion, AnimatePresence } from "framer-motion"; import { motion, AnimatePresence } from "framer-motion";
import Image from "next/image"; import Image from "next/image";
import Link from "next/link"; import Link from "next/link";