Skip to content

Commit

Permalink
Make email of manager of correct form type EmailType
Browse files Browse the repository at this point in the history
  • Loading branch information
thijskh authored and MKodde committed Aug 5, 2024
1 parent de66016 commit 1453f97
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
use Surfnet\ServiceProviderDashboard\Application\Command\Service\CreateServiceCommand;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\Extension\Core\Type\FormType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
Expand Down Expand Up @@ -114,7 +115,7 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
)
->add(
'teamManagerEmail',
TextType::class,
EmailType::class,
[
'label' => 'Email address manager',
'required' => true,
Expand Down

0 comments on commit 1453f97

Please sign in to comment.