Skip to content

Commit

Permalink
chore: Remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasenkoo committed Sep 18, 2023
1 parent f57d6e6 commit 5027cba
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/VueDatePicker/composables/validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,6 @@ export const useValidation = (props: PickerBasePropsType | AllPropsType) => {
if (Array.isArray(props.disabledTimes)) {
return checkDisabledTimesOnArr(isValid, date);
}
console.log('are we here');
return checkDisabledTimesFn(isValid, date);
}
return isValid;
Expand All @@ -267,7 +266,6 @@ export const useValidation = (props: PickerBasePropsType | AllPropsType) => {
if (props.minTime || props.minDate) {
isValid = checkTimeMinMax(props.minTime, props.minDate, 'min', convertType(selectedDateTime), isValid);
}
console.log(checkDisabledTimes(date, isValid), isValid);
return checkDisabledTimes(date, isValid);
};

Expand Down

0 comments on commit 5027cba

Please sign in to comment.