chore: apply prettier formatting to component files

This commit is contained in:
Jason
2025-10-24 13:02:35 +08:00
parent 36767045ce
commit d296471b3b
16 changed files with 89 additions and 86 deletions

View File

@@ -24,14 +24,9 @@ export function BasicFormFields({ form }: BasicFormFieldsProps) {
name="name"
render={({ field }) => (
<FormItem>
<FormLabel>
{t("provider.name")}
</FormLabel>
<FormLabel>{t("provider.name")}</FormLabel>
<FormControl>
<Input
{...field}
placeholder={t("provider.namePlaceholder")}
/>
<Input {...field} placeholder={t("provider.namePlaceholder")} />
</FormControl>
<FormMessage />
</FormItem>
@@ -43,9 +38,7 @@ export function BasicFormFields({ form }: BasicFormFieldsProps) {
name="websiteUrl"
render={({ field }) => (
<FormItem>
<FormLabel>
{t("provider.websiteUrl")}
</FormLabel>
<FormLabel>{t("provider.websiteUrl")}</FormLabel>
<FormControl>
<Input {...field} placeholder="https://" />
</FormControl>