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
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Does anyone know how to set a default date value for an autoform?
The docs say "If you want to set default value of date, convert it to Date first using new Date(val)",
const formSchema = z.object({ orderDate: z.coerce .date() .default(new Date()) .describe('Order Date'), })
However, it causes a console error because the AutoFormFieldDate expects a DateValue value type (from the @internationalzed/date package).
TypeError: slotProps.componentField.modelValue.toDate is not a function
Beta Was this translation helpful? Give feedback.
All reactions