@@ -226,8 +226,7 @@ export const AddImport = ({ environmentId, projectName }: Props) => {
226226 < Tooltip >
227227 < TooltipTrigger asChild >
228228 < FormLabel className = "break-all w-fit flex flex-row gap-1 items-center" >
229- Select a Server{ " " }
230- { ! isCloud ? "(Optional)" : "" }
229+ Select a Server { ! isCloud ? "(Optional)" : "" }
231230 < HelpCircle className = "size-4 text-muted-foreground" />
232231 </ FormLabel >
233232 </ TooltipTrigger >
@@ -238,7 +237,8 @@ export const AddImport = ({ environmentId, projectName }: Props) => {
238237 >
239238 < span >
240239 If no server is selected, the compose will be
241- deployed on the server where the user is logged in.
240+ deployed on the server where the user is logged
241+ in.
242242 </ span >
243243 </ TooltipContent >
244244 </ Tooltip >
@@ -341,7 +341,10 @@ export const AddImport = ({ environmentId, projectName }: Props) => {
341341 </ Dialog >
342342
343343 { /* Preview modal */ }
344- < Dialog open = { previewOpen } onOpenChange = { ( open ) => ! open && handleCancelPreview ( ) } >
344+ < Dialog
345+ open = { previewOpen }
346+ onOpenChange = { ( open ) => ! open && handleCancelPreview ( ) }
347+ >
345348 < DialogContent className = "max-w-[60vw]" >
346349 < DialogHeader >
347350 < DialogTitle className = "text-2xl font-bold" >
@@ -385,7 +388,9 @@ export const AddImport = ({ environmentId, projectName }: Props) => {
385388 key = { index }
386389 className = "rounded-lg border bg-card p-3 text-card-foreground shadow-sm"
387390 >
388- < div className = "font-medium" > { domain . serviceName } </ div >
391+ < div className = "font-medium" >
392+ { domain . serviceName }
393+ </ div >
389394 < div className = "text-sm text-muted-foreground space-y-1" >
390395 < div > Port: { domain . port } </ div >
391396 { domain . host && < div > Host: { domain . host } </ div > }
0 commit comments