Basic table working

This commit is contained in:
Owen
2025-10-21 17:35:13 -07:00
parent 9a64f45815
commit bdc3b2425b
9 changed files with 186 additions and 53 deletions

View File

@@ -50,7 +50,6 @@ export function DateTimePicker({
const handleDateChange = (date: Date | undefined) => {
setInternalDate(date);
const newValue = { date, time: internalTime };
setOpen(false);
onChange?.(newValue);
};