Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Cleaning up... Removed debug logging statements.
  • Loading branch information
jsweet-dev committed May 25, 2023
commit cea3b9a5681a8ebe7e6c422254e5545ced2f2211
3 changes: 0 additions & 3 deletions src/components/Calendar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,6 @@ class Calendar extends PureComponent {
);
};
onDragSelectionStart = date => {
console.log(`onDragSelectionStart: ${date}`);
const { onChange, dragSelectionEnabled } = this.props;

if (dragSelectionEnabled) {
Expand All @@ -352,7 +351,6 @@ class Calendar extends PureComponent {
};

onDragSelectionEnd = date => {
console.log(`onDragSelectionEnd: ${date}`);
const { updateRange, displayMode, onChange, dragSelectionEnabled } = this.props;

if (!dragSelectionEnabled) return;
Expand All @@ -374,7 +372,6 @@ class Calendar extends PureComponent {
}
};
onDragSelectionMove = date => {
console.log(`onDragSelectionMove: ${date}`);
const { drag } = this.state;
if (!drag.status || !this.props.dragSelectionEnabled) return;
this.setState({
Expand Down