Skip to content

Commit e1f0cee

Browse files
committed
LINTTTT PLEASEEEE
1 parent 4b3c263 commit e1f0cee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

clients/web/src/components/rooms/RoomTaskCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import type { LucideIcon } from "lucide-react";
21
import {
32
FlagIcon,
43
MapPinIcon,
54
Maximize2Icon,
65
StoreIcon,
76
TriangleAlertIcon,
87
} from "lucide-react";
8+
import type { LucideIcon } from "lucide-react";
99

1010
import { Button } from "@/components/ui/Button";
1111
import { cn } from "@/lib/utils";

clients/web/src/components/rooms/RoomTaskList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1+
import type { RoomTaskCardData } from "@/components/rooms/RoomTaskCard";
12
import { cn } from "@/lib/utils";
23
import { RoomTaskCard } from "@/components/rooms/RoomTaskCard";
3-
import type { RoomTaskCardData } from "@/components/rooms/RoomTaskCard";
44

55
export type RoomTaskItem = RoomTaskCardData & { id: string };
66

77
type RoomTaskListProps = {
88
title: string;
9-
tasks: RoomTaskItem[];
9+
tasks: Array<RoomTaskItem>;
1010
onAssignToSelf?: (id: string) => void;
1111
onExpand?: (id: string) => void;
1212
className?: string;

0 commit comments

Comments
 (0)