diff --git a/packages/core/admin/admin/src/content-manager/components/Inputs/utils/getStep.js b/packages/core/admin/admin/src/content-manager/components/Inputs/utils/getStep.js index 7c6653aee0..088e374dff 100644 --- a/packages/core/admin/admin/src/content-manager/components/Inputs/utils/getStep.js +++ b/packages/core/admin/admin/src/content-manager/components/Inputs/utils/getStep.js @@ -3,10 +3,6 @@ const getStep = (type) => { if (type === 'float' || type === 'decimal') { step = 0.01; - } else if (type === 'time' || type === 'datetime') { - // Since we cannot set a value that is not in the list of the time picker, we need to set the step to 1 - // TODO: Fix the timepicker in order to be able to set any value regardless of the list - step = 1; } else { step = 1; }