Skip to content

Commit 12bdeae

Browse files
committed
lint
1 parent 7c0fecf commit 12bdeae

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

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

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
import {
2-
FlagIcon,
3-
MapPinIcon,
4-
Maximize2Icon,
5-
StoreIcon,
6-
} from "lucide-react";
1+
import { FlagIcon, MapPinIcon, Maximize2Icon, StoreIcon } from "lucide-react";
72
import type { LucideIcon } from "lucide-react";
83

94
import { Button } from "@/components/ui/Button";
@@ -92,7 +87,8 @@ export function RoomTaskCard({
9287
</div>
9388

9489
<div className="flex flex-wrap items-center gap-3">
95-
{priority && (priority == "medium" || priority == "high") &&
90+
{priority &&
91+
(priority == "medium" || priority == "high") &&
9692
(() => {
9793
const { label, Icon, containerClass, contentClass } =
9894
priorityConfig[priority];

0 commit comments

Comments
 (0)