@awell-health/ui-library 0.1.58 → 0.1.60

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2274,7 +2274,8 @@ Check the top-level render call using <` + t + ">.");
2274
2274
  }).
2275
2275
  join('&');
2276
2276
  }
2277
- var composedCalLink = "".concat(calLink).concat(metadata ? "?".concat(metadataString) : '');
2277
+ var metadataSeparator = calLink.includes('?') ? '&' : '?';
2278
+ var composedCalLink = "".concat(calLink).concat(metadataString ? "".concat(metadataSeparator).concat(metadataString) : '');
2278
2279
  return jsxRuntime.exports.jsx(Er, { calLink: composedCalLink, style: { width: '100%', height: '100%', overflow: 'hidden' } });
2279
2280
  };
2280
2281
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awell-health/ui-library",
3
- "version": "0.1.58",
3
+ "version": "0.1.60",
4
4
  "private": false,
5
5
  "description": "UI components to integrate with Awell Health",
6
6
  "repository": {