@nibssplc/cams-sdk-react 1.0.0-rc.22 → 1.0.0-rc.24

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.esm.js CHANGED
@@ -1442,7 +1442,7 @@ function UnifiedCAMSProvider(props) {
1442
1442
  // Validate appCode is a valid GUID
1443
1443
  var appCodeValidation = GuidSchema.safeParse(props.appCode);
1444
1444
  if (!appCodeValidation.success) {
1445
- throw new Error("Invalid appCode: ".concat(appCodeValidation.error.issues[0].message));
1445
+ throw new Error("Invalid CAS APP CODE: ".concat(appCodeValidation.error.issues[0].message));
1446
1446
  }
1447
1447
  if (props.mode === "MSAL") {
1448
1448
  var msalConfig = props.msalConfig, msalInstance = props.msalInstance;