We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f30cfc4 commit 3c7846dCopy full SHA for 3c7846d
packages/pluggableWidgets/calendar-web/src/helpers/CalendarPropsBuilder.ts
@@ -151,18 +151,13 @@ export class CalendarPropsBuilder {
151
}
152
153
private getSafeTimePattern(): string | undefined {
154
- console.log("this.props.timeFormat?.status", this.props.timeFormat?.status);
155
if (this.props.timeFormat?.status === "available") {
156
- console.log("this.props.timeFormat.value", this.props.timeFormat.value);
157
const trimmed = this.props.timeFormat.value?.trim();
158
if (trimmed && trimmed.length > 0) {
159
- console.log("trimmed", trimmed);
160
return trimmed;
161
162
- console.log("returning p");
163
return "p";
164
165
- console.log("returning undefined");
166
return undefined;
167
168
0 commit comments