A bit of a hack but you can programmatically click the month to "jump to" the month you need it. You can then attach this script to the page under the advanced section.
<script>
setTimeout(() => {
const gotToNextMonthButtonEl = document.querySelector('a[role=button][aria-label="Go to next month"]');
for (let i = 0; i < 20; i++) {
const headerLabelEl = document.querySelector('[class*="calendar-header-label"]');
if (headerLabelEl.textContent === 'April 2024') break;
gotToNextMonthButtonEl.dispatchEvent(new MouseEvent('click'));
}
}, 500);
</script>