fix: use correct country tokens

This commit is contained in:
Björn Fromme
2025-10-06 15:58:44 +02:00
parent fad28c2442
commit 2f582f0548
+1 -1
View File
@@ -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'],
]);
}