Hello after updating to Xcode 14 I'm facing with an issue on date picker so when I pick some date sometime date would be formatted like: 25 sep 2022 other times 30/09/2022 in Xcode 13 it was working fine
DatePicker("transactionDate", selection: $vm.transactionDate, displayedComponents: [.date])
.labelsHidden()
.id(vm.transactionDate)
.onChange(of: vm.transactionDate) { date in
vm.selectedEndRecurrenceDate = date
}
}
.datePickerStyle(CompactDatePickerStyle())
So I don't understand now how to fix, nothing is changed in the code