isdata-customer-sdk 0.1.43 → 0.1.44

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/dist/index.js CHANGED
@@ -22962,8 +22962,8 @@ const queryGroupIDByOfficeId = async id => {
22962
22962
  const queryAppVariable = (name, appVariables) => {
22963
22963
  if (appVariables && appVariables.length > 0) {
22964
22964
  for (let i = 0; i < appVariables.length; i++) {
22965
- if (appVariables[i].name === name) {
22966
- return appVariables[i].defaultValue;
22965
+ if (appVariables[i].name == name) {
22966
+ return appVariables[i].default_value;
22967
22967
  }
22968
22968
  }
22969
22969
  }