Bar Antoine
Hamilton Place, Sutton, London
Unfortunately, we are unable to accept any bookings at the moment.
document.addEventListener('DOMContentLoaded', (event) => {
const timeslots = document.querySelectorAll('.timeslots .flex');
let hasAvailableSlots = false;
timeslots.forEach(slot => {
const input = slot.querySelector('input[type="radio"]');
if (input.disabled) {
slot.style.display = 'none';
} else {
hasAvailableSlots = true;
}
});
if (!hasAvailableSlots) {
const selectTimeText = document.querySelector('span.text-base.font-semibold');
if (selectTimeText) {
selectTimeText.textContent = 'No timeslots are available today. Please choose another day.';
}
}
});