Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 22:54:24 +00:00
co-authored by renee-png
parent 33ff50aab0
commit a353c9766c
+5 -2
View File
@@ -715,7 +715,7 @@ function CalendarPage() {
{!fAllDay && (
<div className="grid grid-cols-2 gap-3">
<div>
<Label>Start time</Label>
<Label>Start time (EST)</Label>
<Input
type="time"
value={fStartTime}
@@ -723,13 +723,16 @@ function CalendarPage() {
/>
</div>
<div>
<Label>End time</Label>
<Label>End time (EST)</Label>
<Input
type="time"
value={fEndTime}
onChange={(e) => setFEndTime(e.target.value)}
/>
</div>
<p className="col-span-2 text-xs text-muted-foreground -mt-1">
All times are entered and displayed in Eastern Time.
</p>
</div>
)}
<div className="grid grid-cols-2 gap-3">