Skip to content

Commit

Permalink
remove excess logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jp-cen committed Dec 14, 2024
1 parent eae94dd commit 60ce1f4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion main.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ export const DayView = (props: {
),
wkst: repeatDef.wkst && getWeekdayValue(repeatDef.wkst),
};
console.log(repeatDef);
const rule = new RRule(
Object.entries(rruleOptions)
.filter(([key, value]) => value !== undefined)
Expand Down Expand Up @@ -322,7 +321,6 @@ export const DayView = (props: {
roundToQuarter(_event.endOffset + (offset / hourHeight) * 60)
),
});
console.log(newStart, newEnd);
props.updateItem({
...props.data[index],
[props.field]: formatDate(props.superstate, newStart, isoDateFormat),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ export const MonthWeekRow = (props: {
endOfDay(weekEnd),
true
);
console.log(event[PathPropertyName], repeatDef, starts);
starts.forEach((startDate) => {
if (startDate.getTime() == rowDate.getTime()) return;
instances.push({
Expand Down

0 comments on commit 60ce1f4

Please sign in to comment.