organify-ui 0.2.13 → 0.2.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -7945,8 +7945,8 @@ function CreateSprintDialog({
7945
7945
  name: trimmed,
7946
7946
  projectId: effectiveProjectId,
7947
7947
  ...goal.trim() && { goal: goal.trim() },
7948
- ...startDate && { startDate },
7949
- ...endDate && { endDate }
7948
+ ...startDate && { startDate: new Date(startDate).toISOString() },
7949
+ ...endDate && { endDate: new Date(endDate).toISOString() }
7950
7950
  }
7951
7951
  }
7952
7952
  );