@capillarytech/creatives-library 8.0.117 → 8.0.118

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capillarytech/creatives-library",
3
3
  "author": "meharaj",
4
- "version": "8.0.117",
4
+ "version": "8.0.118",
5
5
  "description": "Capillary creatives ui",
6
6
  "main": "./index.js",
7
7
  "module": "./index.es.js",
@@ -28,7 +28,7 @@ export const processErrors = (rawErrorData, errorType, platform, messages) => {
28
28
  };
29
29
 
30
30
  export const getLiquidProps = (errors, isAndroid, showTitle, showPlatformLabels) => ({
31
- title: (isAndroid ? true : !showTitle && true ) && errors?.LIQUID?.title,
31
+ title: (isAndroid || !showTitle) && errors?.LIQUID?.title,
32
32
  errors: [
33
33
  ...(errors?.STANDARD?.errorsToShow || []),
34
34
  ...(errors?.LIQUID?.errorsToShow || []),
@@ -618,7 +618,7 @@ const withLineContainerSaga = injectSaga({ key: 'lineCreate', saga: v2LineContai
618
618
  const withMobilePushCreateSaga = injectSaga({ key: 'mobileCreate', saga: v2MobilePushCreateSagas });
619
619
  const withWechatMapTemplatesSaga = injectSaga({ key: 'weChatMapTemplate', saga: v2WechatMapTemplatesSagas });
620
620
  const withRcsSaga = injectSaga({ key: 'rcs', saga: v2RcsSagas });
621
- const withInAppSaga = injectSaga({ key: 'inapp', saga: v2InAppSagas });
621
+ const withInAppSaga = injectSaga({ key: 'inapp', saga: v2InAppSagas, mode: DAEMON });
622
622
  const withViberSaga = injectSaga({ key: 'viber', saga: v2ViberSagas });
623
623
  const withFacebookSaga = injectSaga({ key: 'facebook', saga: v2FacebookSagas });
624
624
  const withLineReducer = injectReducer({ key: 'lineCreate', reducer: createReducer });