I am using react-calendar. The problem comes when the browser console throw an error:
Prop
aria-label did not match. Server: "December 26, 2022" Client: "26 December 2022"
I created the Calendar component inside main tag.
<main>
<DashboardHeaderInfo userInfo={props.newSession.user}>
{/* Wrapper section */}
<section>
<Calendar
value={date}
onChange={handleOnchangeDate}
onClickDay={value => handleSelectDay(value)}
/>
</section>
<CalendarCreateDayModal show={show} setShow={setShow}/>
</DashboardHeaderInfo>
</main>
</Fragment>
I dont know what to look for. I cannot find this error anywhere: