Skip to content

Commit 3c7846d

Browse files
committed
chore(calendar-web): clean logs
1 parent f30cfc4 commit 3c7846d

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

packages/pluggableWidgets/calendar-web/src/helpers/CalendarPropsBuilder.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,18 +151,13 @@ export class CalendarPropsBuilder {
151151
}
152152

153153
private getSafeTimePattern(): string | undefined {
154-
console.log("this.props.timeFormat?.status", this.props.timeFormat?.status);
155154
if (this.props.timeFormat?.status === "available") {
156-
console.log("this.props.timeFormat.value", this.props.timeFormat.value);
157155
const trimmed = this.props.timeFormat.value?.trim();
158156
if (trimmed && trimmed.length > 0) {
159-
console.log("trimmed", trimmed);
160157
return trimmed;
161158
}
162-
console.log("returning p");
163159
return "p";
164160
}
165-
console.log("returning undefined");
166161
return undefined;
167162
}
168163

0 commit comments

Comments
 (0)