diff --git a/libs/ui/src/lib/input/AmharicDatePicker.tsx b/libs/ui/src/lib/input/AmharicDatePicker.tsx index 879cb0b5a..ee1071712 100644 --- a/libs/ui/src/lib/input/AmharicDatePicker.tsx +++ b/libs/ui/src/lib/input/AmharicDatePicker.tsx @@ -293,7 +293,6 @@ export function AmharicDatePicker({ defaultMonth={selected ?? undefined} endMonth={YEAR_DROPDOWN_END} numerals="latn" - captionLayout="dropdowns" formatters={ETH_FORMATTERS} onSelect={(date: Date | undefined) => { onChange?.(date ? formatWireValue(mergeDateTime(selected, date), dateFormat, withTime) : ''); @@ -307,7 +306,6 @@ export function AmharicDatePicker({ selected={selected ?? undefined} defaultMonth={selected ?? undefined} endMonth={YEAR_DROPDOWN_END} - captionLayout="dropdowns" onSelect={(date: Date | undefined) => { onChange?.(date ? formatWireValue(mergeDateTime(selected, date), dateFormat, withTime) : ''); if (!withTime) close();