You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When editing a waitField, the screen goes completely black. The app breaks and needs a page refresh to work again.
To Reproduce
Steps to reproduce the behavior:
Go to http://localhost:5173/home
Select any task whose waitField is filled
Click on a waitField to edit it
Screen goes black and becomes unresponsive
Expected behavior
The DatePicker should open normally when editing.
Video
Screen.Recording.2025-12-07.at.8.41.56.PM.mov
Desktop (please complete the following information):
OS: macOS
Browser: Chrome
Version: Latest
Additional context
Console error: Uncaught RangeError: Invalid time value at DatePicker (date-picker.tsx:38:19)
The error occurs in the <DatePicker> component inside the table when trying to edit a field. The DatePicker is receiving an invalid date value (likely null, undefined, or incorrectly formatted). This causes the component to crash and render a black screen.
Error boundary stack trace shows the error propagates through:
Describe the bug
When editing a waitField, the screen goes completely black. The app breaks and needs a page refresh to work again.
To Reproduce
Steps to reproduce the behavior:
http://localhost:5173/homeExpected behavior
The DatePicker should open normally when editing.
Video
Screen.Recording.2025-12-07.at.8.41.56.PM.mov
Desktop (please complete the following information):
Additional context
Console error:
Uncaught RangeError: Invalid time value at DatePicker (date-picker.tsx:38:19)The error occurs in the
<DatePicker>component inside the table when trying to edit a field. The DatePicker is receiving an invalid date value (likely null, undefined, or incorrectly formatted). This causes the component to crash and render a black screen.Error boundary stack trace shows the error propagates through:
The issue is that waitField data isn't being passed correctly to the DatePicker on edit mode.