Skip to content

Commit dc48f55

Browse files
committed
Update ChatBar.tsx
1 parent 67aeab1 commit dc48f55

File tree

1 file changed

+4
-4
lines changed
  • apps/dashboard/src/app/nebula-app/(app)/components

1 file changed

+4
-4
lines changed

apps/dashboard/src/app/nebula-app/(app)/components/ChatBar.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export function ChatBar(props: {
113113
`You can only upload up to ${maxAllowedImagesPerMessage} images at a time`,
114114
{
115115
position: "top-right",
116-
}
116+
},
117117
);
118118
return;
119119
}
@@ -136,7 +136,7 @@ export function ChatBar(props: {
136136
validFiles.map(async (image) => {
137137
const b64 = await uploadImageMutation.mutateAsync(image);
138138
return { file: image, b64: b64 };
139-
})
139+
}),
140140
);
141141

142142
setImages((prev) => [...prev, ...urls]);
@@ -156,7 +156,7 @@ export function ChatBar(props: {
156156
isDragOver &&
157157
props.allowImageUpload &&
158158
"border-nebula-pink-foreground bg-nebula-pink/5",
159-
props.className
159+
props.className,
160160
)}
161161
onDrop={(e) => {
162162
e.preventDefault();
@@ -582,7 +582,7 @@ function WalletSelector(props: {
582582
key={wallet.address}
583583
className={cn(
584584
"flex cursor-pointer items-center justify-between px-3 py-4 hover:bg-accent/50",
585-
props.selectedAddress === wallet.address && "bg-accent/50"
585+
props.selectedAddress === wallet.address && "bg-accent/50",
586586
)}
587587
onKeyDown={(e) => {
588588
if (e.key === "Enter" || e.key === " ") {

0 commit comments

Comments
 (0)