Skip to content

Commit f29b505

Browse files
committed
format
1 parent 25b2473 commit f29b505

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/ui/MultimodalPreview.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,19 +73,19 @@ export const MultimodalPreview: React.FC<MultimodalPreviewProps> = ({
7373
<div
7474
className={cn(
7575
"relative flex items-center gap-2 rounded-md border bg-gray-100 px-3 py-2",
76-
className
76+
className,
7777
)}
7878
>
7979
<File
8080
className={cn(
8181
"flex-shrink-0 text-teal-700",
82-
size === "sm" ? "h-5 w-5" : "h-7 w-7"
82+
size === "sm" ? "h-5 w-5" : "h-7 w-7",
8383
)}
8484
/>
8585
<span
8686
className={cn(
8787
"truncate text-sm text-gray-800",
88-
size === "sm" ? "max-w-[80px]" : "max-w-[160px]"
88+
size === "sm" ? "max-w-[80px]" : "max-w-[160px]",
8989
)}
9090
>
9191
{String(filename)}
@@ -109,7 +109,7 @@ export const MultimodalPreview: React.FC<MultimodalPreviewProps> = ({
109109
<div
110110
className={cn(
111111
"flex items-center gap-2 rounded-md border bg-gray-100 px-3 py-2 text-gray-500",
112-
className
112+
className,
113113
)}
114114
>
115115
<File className="h-5 w-5 flex-shrink-0" />

0 commit comments

Comments
 (0)