From c89bda86b775f9cedb06f14c74460ba06e138d46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Mon, 6 Oct 2025 15:58:44 +0200 Subject: [PATCH] fix: use correct country tokens --- src/Form/AddressType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Form/AddressType.php b/src/Form/AddressType.php index 39d0c66..e7d4f69 100644 --- a/src/Form/AddressType.php +++ b/src/Form/AddressType.php @@ -35,7 +35,7 @@ class AddressType extends AbstractType 'label' => 'Land', 'property' => 'country', 'required' => $options['required'], - 'preferred_choices' => ['DE', 'AT', 'CH'], + 'preferred_choices' => ['D', 'A', 'CH'], ]); }