diff --git a/components/profile/activity.tsx b/components/profile/activity.tsx index 9d134c42..c9b65385 100644 --- a/components/profile/activity.tsx +++ b/components/profile/activity.tsx @@ -1,29 +1,16 @@ -import React, { Fragment, useEffect, useState, useMemo } from "react"; -import { useRecoilState, useRecoilValue } from "recoil"; +import { Fragment, useEffect, useState } from "react"; +import { useRecoilState } from "recoil"; import { workspacestate } from "@/state"; -import { themeState } from "@/state/theme"; import { FC } from "@/types/settingsComponent"; -import { Chart, ChartData, ScatterDataPoint } from "chart.js"; -import { Line } from "react-chartjs-2"; import type { ActivitySession, Quota, inactivityNotice } from "@prisma/client"; -import Tooltip from "@/components/tooltip"; import moment from "moment"; import { Dialog, Transition, Tab } from "@headlessui/react"; -import Button from "../button"; import { - IconMessages, - IconMoon, - IconPlayerPlay, - IconWalk, IconCalendarTime, IconChartBar, - IconUsers, - IconClipboardList, IconAdjustments, IconChevronLeft, IconChevronRight, - IconCalendar, - IconClock, IconCalendarEvent, IconTarget, } from "@tabler/icons-react";