diff --git a/src/app/(token)/token/page.tsx b/src/app/(token)/token/page.tsx index fb6cdb4..fc8a785 100644 --- a/src/app/(token)/token/page.tsx +++ b/src/app/(token)/token/page.tsx @@ -1,6 +1,6 @@ "use client"; import { useState, useEffect } from "react"; -import { motion, AnimatePresence } from "framer-motion"; +import { motion } from "framer-motion"; export default function Page() { const [token, setToken] = useState(""); const [copied, setCopied] = useState(false); @@ -22,7 +22,13 @@ export default function Page() { }, 500); } return ( -