From b0704cea859080fe1d7799b2a730d75836022b52 Mon Sep 17 00:00:00 2001 From: Tom Elliott Date: Mon, 9 Jun 2025 17:00:28 +1200 Subject: [PATCH] remove unused imports --- src/app/(website)/components/Home/Collaboration/index.tsx | 2 +- src/app/(website)/components/Home/Projects/index.tsx | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/(website)/components/Home/Collaboration/index.tsx b/src/app/(website)/components/Home/Collaboration/index.tsx index 262a2c2..e2739e3 100644 --- a/src/app/(website)/components/Home/Collaboration/index.tsx +++ b/src/app/(website)/components/Home/Collaboration/index.tsx @@ -2,7 +2,7 @@ import { motion, MotionValue, useScroll, useTransform } from "motion/react"; import Link from "next/link"; -import { useEffect, useRef } from "react"; +import { useRef } from "react"; const collaborators = { aotearoa: Array.from({ length: 16 }).map((x, i) => `Organisation ${i}`), diff --git a/src/app/(website)/components/Home/Projects/index.tsx b/src/app/(website)/components/Home/Projects/index.tsx index 281d10b..addddc7 100644 --- a/src/app/(website)/components/Home/Projects/index.tsx +++ b/src/app/(website)/components/Home/Projects/index.tsx @@ -4,7 +4,6 @@ import useWindow from "@/app/(website)/hooks/useWindow"; import { HomeProject, Project } from "@payload-types"; import { RichText } from "@payloadcms/richtext-lexical/react"; import { motion, useScroll, useTransform } from "motion/react"; -import Image from "next/image"; import Link from "next/link"; import { useRef, useState } from "react"; import PayloadImage from "../../PayloadImage";