Hi,
<FwDatepicker
label="Remind At"
show-time-picker
placement="top"
minDate={minDate.toISOString()}
value={remindAt}
showFooter={true}
onFwChange={(e)=> { setReminderAt(new Date(e.detail.value))}}
></FwDatepicker>
If the showFooter is false, just selecting the time from the dropdown is not triggering the on-change event.