remove unused imports

This commit is contained in:
Kyle Corbitt
2023-08-12 10:02:23 -07:00
parent 537525667d
commit 8d373ec9b5
2 changed files with 2 additions and 4 deletions

View File

@@ -12,13 +12,12 @@ import {
useDisclosure,
Spinner,
Link as ChakraLink,
IconButton,
Image,
Box,
} from "@chakra-ui/react";
import React, { useEffect, useState } from "react";
import Link from "next/link";
import { BsGear, BsPlus, BsPersonCircle } from "react-icons/bs";
import { BsPlus, BsPersonCircle } from "react-icons/bs";
import { type Project } from "@prisma/client";
import { useAppStore } from "~/state/store";

View File

@@ -1,7 +1,6 @@
"use client";
import { type Session } from "next-auth";
import { useSession } from "next-auth/react";
import React, { ReactNode, useEffect } from "react";
import React, { type ReactNode, useEffect } from "react";
import { PostHogProvider } from "posthog-js/react";
import posthog from "posthog-js";