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.umd.js CHANGED
@@ -22972,8 +22972,8 @@ const queryGroupIDByOfficeId = async id => {
22972
22972
  const queryAppVariable = (name, appVariables) => {
22973
22973
  if (appVariables && appVariables.length > 0) {
22974
22974
  for (let i = 0; i < appVariables.length; i++) {
22975
- if (appVariables[i].name === name) {
22976
- return appVariables[i].defaultValue;
22975
+ if (appVariables[i].name == name) {
22976
+ return appVariables[i].default_value;
22977
22977
  }
22978
22978
  }
22979
22979
  }