File tree 1 file changed +4
-4
lines changed
apps/dashboard/src/app/nebula-app/(app)/components 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ export function ChatBar(props: {
113
113
`You can only upload up to ${ maxAllowedImagesPerMessage } images at a time` ,
114
114
{
115
115
position : "top-right" ,
116
- }
116
+ } ,
117
117
) ;
118
118
return ;
119
119
}
@@ -136,7 +136,7 @@ export function ChatBar(props: {
136
136
validFiles . map ( async ( image ) => {
137
137
const b64 = await uploadImageMutation . mutateAsync ( image ) ;
138
138
return { file : image , b64 : b64 } ;
139
- } )
139
+ } ) ,
140
140
) ;
141
141
142
142
setImages ( ( prev ) => [ ...prev , ...urls ] ) ;
@@ -156,7 +156,7 @@ export function ChatBar(props: {
156
156
isDragOver &&
157
157
props . allowImageUpload &&
158
158
"border-nebula-pink-foreground bg-nebula-pink/5" ,
159
- props . className
159
+ props . className ,
160
160
) }
161
161
onDrop = { ( e ) => {
162
162
e . preventDefault ( ) ;
@@ -582,7 +582,7 @@ function WalletSelector(props: {
582
582
key = { wallet . address }
583
583
className = { cn (
584
584
"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" ,
586
586
) }
587
587
onKeyDown = { ( e ) => {
588
588
if ( e . key === "Enter" || e . key === " " ) {
You can’t perform that action at this time.
0 commit comments