Skip to content

Commit 4571536

Browse files
joaopaulolndevgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 2229f8f commit 4571536

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Forms/CustomForms.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ public static function get(array $customFields): array
2323
->placeholder(__($field['placeholder']))
2424
->required($field['required'])
2525
->rules($field['rules']);
26-
27-
}elseif ($field['type'] === TypeFieldEnum::Password->value) {
26+
27+
} elseif ($field['type'] === TypeFieldEnum::Password->value) {
2828

2929
$fields[] = TextInput::make($fieldKey)
3030
->label(__($field['label']))
@@ -34,7 +34,7 @@ public static function get(array $customFields): array
3434
->required($field['required'])
3535
->rules($field['rules']);
3636

37-
}elseif ($field['type'] === TypeFieldEnum::Url->value) {
37+
} elseif ($field['type'] === TypeFieldEnum::Url->value) {
3838

3939
$fields[] = TextInput::make($fieldKey)
4040
->label(__($field['label']))

0 commit comments

Comments
 (0)