RadzenDatePicker not showing in 12 hour format

RadzenDatePicker not showing in 12 hour format after clicking the picker. It shows fine on the picker with HH:mm AM/PM but when you click Ok the display on the textbox is 24 hour time format. Here is my code and screenshot

<RadzenDatePicker @bind-Value="@timeValue1" MinutesStep="15" TimeOnly="true" AllowInput="false" Change=@OnTimeChanged1 ShowSeconds="false" HourFormat="12" DateFormat="HH:mm tt" Name="DatePickerTimeOnlyType" />
Screenshot 2024-03-14 111639

This is 24 hour format, for 12 hour format you should use hh .

Oh great, thanks!! I'm such a dumb.