Skip to content

Commit 1d01c3b

Browse files
Fix tsc linter errors
1 parent 838d580 commit 1d01c3b

4 files changed

Lines changed: 1 addition & 14 deletions

File tree

src/components/ui/timeline.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { cn } from "@/lib/utils";
2-
import { ClockIcon, Play } from "lucide-react";
2+
import { Play } from "lucide-react";
33
import React, { useEffect, useRef, useState } from "react";
44

55
interface TimelineItemProps

src/pages/Home/Main/OrganizerView/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import {
2020
import ResourceEditor from "./ResourceEditor";
2121
import { TrackEditor } from "./TrackEditor";
2222
import { useNavigate } from "react-router-dom";
23-
import { functionsService } from "@/services/functions.service";
2423

2524
export default function OrganizerView() {
2625
const navigate = useNavigate();

src/pages/Home/Main/TeamView/index.tsx

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
1-
import { Button } from "@/components/ui/button";
21
import FeedItem from "../FeedItem";
3-
import { ArrowRight, BadgePlus } from "lucide-react";
4-
import {
5-
Dialog,
6-
DialogContent,
7-
DialogDescription,
8-
DialogHeader,
9-
DialogTitle,
10-
DialogTrigger,
11-
} from "@/components/ui/dialog";
122
import UnregisteredView from "./UnregisteredView";
133
import { teamAtom } from "@/atoms/team";
144
import { useAtomValue } from "jotai";
155
import UnapprovedView from "./UnapprovedView";
166
import ApprovedView from "./ApprovedView";
17-
import { isOrganizerAtom } from "@/atoms/user";
187

198
export default function TeamView() {
209
const team = useAtomValue(teamAtom);

src/pages/Home/Nav/Countdown.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {
44
} from "@/atoms/event/countdown";
55
import { hackingStateAtom } from "@/atoms/event/state";
66
import { useAtomValue } from "jotai";
7-
import { use, useEffect, useState } from "react";
87

98
export default function Countdown() {
109
const hackingState = useAtomValue(hackingStateAtom);

0 commit comments

Comments
 (0)