I face this with a case
you can replace 12 with the current minutes - get it by new Date().getMinutes(); or by moments moment().minute(); or by dayJs dayjs().minute();
<TimePicker
disabledTime={() => ({
disabledHours: () =>
Array.from({ length: 24 }, (_, i) => (i >= 1 ? i : i - 1)),
disabledMinutes: () =>
Array.from({ length: 60 }, (_, i) =>
i >= 12 + 1
? i
: i - (12 + 1)
),
})}
/>