diff --git a/apps/web/components/schedule/datetime-card.tsx b/apps/web/components/schedule/datetime-card.tsx index 413dd81..6ae7a8c 100644 --- a/apps/web/components/schedule/datetime-card.tsx +++ b/apps/web/components/schedule/datetime-card.tsx @@ -10,14 +10,14 @@ export function DateTimeCard({ documentId }: Readonly) { if (!slot) return null; return ( -
- {formatDate(slot?.date).user()} - +
+ + {formatDate(slot?.date).user()} + + {formatTime(slot?.time_start).user()} - - {formatTime(slot?.time_end).user()} - + {formatTime(slot?.time_end).user()}
); }