You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Calendar
mode="single"
selected={field.value ? field.value : undefined}
onSelect={(date: Date | undefined) => {
if (date) field.onChange(date);
}}
defaultMonth={field.value ? field.value : undefined}
disabled={(date: Date) => date > new Date()}
initialFocus
captionLayout="dropdown-buttons"
fromDate={fromDate}
toDate={toDate}
/>
https://github.com/gpbl/react-day-picker/blob/7f78cd5/src/components/Caption/Caption.tsx#L31
im using calendar like this and it renders to something that looks like this https://imgur.com/a/KXEzmbU . I want to remove those dupe labels. I am going into this file and editing things but dont see it reflect on the component. Anyone mind helping me out with this?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Beta Was this translation helpful? Give feedback.
All reactions