export const isDateWithoutTime = (isoDateString: string): boolean => { return /^\d{4}-\d{2}-\d{2}$/.test(isoDateString); };