File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
clients/web/src/components/rooms Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1- import type { LucideIcon } from "lucide-react" ;
21import {
32 FlagIcon ,
43 MapPinIcon ,
54 Maximize2Icon ,
65 StoreIcon ,
76 TriangleAlertIcon ,
87} from "lucide-react" ;
8+ import type { LucideIcon } from "lucide-react" ;
99
1010import { Button } from "@/components/ui/Button" ;
1111import { cn } from "@/lib/utils" ;
Original file line number Diff line number Diff line change 1+ import type { RoomTaskCardData } from "@/components/rooms/RoomTaskCard" ;
12import { cn } from "@/lib/utils" ;
23import { RoomTaskCard } from "@/components/rooms/RoomTaskCard" ;
3- import type { RoomTaskCardData } from "@/components/rooms/RoomTaskCard" ;
44
55export type RoomTaskItem = RoomTaskCardData & { id : string } ;
66
77type RoomTaskListProps = {
88 title : string ;
9- tasks : RoomTaskItem [ ] ;
9+ tasks : Array < RoomTaskItem > ;
1010 onAssignToSelf ?: ( id : string ) => void ;
1111 onExpand ?: ( id : string ) => void ;
1212 className ?: string ;
You can’t perform that action at this time.
0 commit comments