mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-08 15:35:23 +02:00
styles: format code with prettier
This commit is contained in:
@@ -134,7 +134,7 @@ export const UpdatePort = ({ portId }: Props) => {
|
||||
if (value === "") {
|
||||
field.onChange(0);
|
||||
} else {
|
||||
field.onChange(parseInt(value, 10));
|
||||
field.onChange(Number.parseInt(value, 10));
|
||||
}
|
||||
}}
|
||||
/>
|
||||
|
||||
@@ -228,10 +228,7 @@ export const AddDomain = ({
|
||||
<FormItem>
|
||||
<FormLabel>Container Port</FormLabel>
|
||||
<FormControl>
|
||||
<NumberInput
|
||||
placeholder={"3000"}
|
||||
{...field}
|
||||
/>
|
||||
<NumberInput placeholder={"3000"} {...field} />
|
||||
</FormControl>
|
||||
<FormMessage />
|
||||
</FormItem>
|
||||
|
||||
Reference in New Issue
Block a user