@selfcommunity/react-core 0.5.0-embeds.17 → 0.5.0-live.65

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -193,7 +193,7 @@ export const validateWebSocketDisableToastMessage = (value) => {
193
193
  export const validateWebSocketSecure = (value) => {
194
194
  const errors = [];
195
195
  const warnings = [];
196
- if (value) {
196
+ if ((value === null || value === void 0 ? void 0 : value.toString()) !== undefined) {
197
197
  if (!(typeof value === 'boolean')) {
198
198
  errors.push(ValidationError.ERROR_INVALID_NOTIFICATIONS_WEBSOCKET_SECURE);
199
199
  }
@@ -644,7 +644,6 @@ export const validateOpenAI = (v) => {
644
644
  * @param v
645
645
  */
646
646
  export const validateGeocoding = (v) => {
647
- //console.log(v);
648
647
  const errors = [];
649
648
  const warnings = [];
650
649
  if (v && !isObject(v)) {