Clients ui done

This commit is contained in:
Owen
2025-07-24 21:42:44 -07:00
parent 760fe3aca9
commit 1466788f77
8 changed files with 31 additions and 474 deletions
@@ -100,7 +100,7 @@ export default function Page() {
.refine((val) => val.length > 0, {
message: t("siteRequired")
}),
subnet: z.string().min(1, {
subnet: z.string().ip().min(1, {
message: t("subnetRequired")
})
});
@@ -442,14 +442,10 @@ export default function Page() {
<FormControl>
<Input
autoComplete="off"
placeholder={t("clientNamePlaceholder")}
{...field}
/>
</FormControl>
<FormMessage />
<FormDescription>
{t("clientNameDescription")}
</FormDescription>
</FormItem>
)}
/>