@neurodyn/react-room-viewer 0.0.10 → 0.0.11

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 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -9453,14 +9453,13 @@ function AR({ className, buttonClassName, buttonLeadingIcon, buttonLabel, button
9453
9453
  handoffWidgetSessionToken
9454
9454
  ]);
9455
9455
  const appClipUrl = external_react_useMemo(()=>{
9456
- if (!tinuuid || 'vizbl' !== tenant) return null;
9456
+ if (!tinuuid) return null;
9457
9457
  const url = new URL('https://appclip.apple.com/id');
9458
9458
  url.searchParams.set('p', config_env.APP_CLIP_BUNDLE_ID);
9459
9459
  url.searchParams.set('tinuuid', tinuuid);
9460
9460
  return url.toString();
9461
9461
  }, [
9462
- tinuuid,
9463
- tenant
9462
+ tinuuid
9464
9463
  ]);
9465
9464
  async function refreshHandoffWidgetSessionToken() {
9466
9465
  const nextToken = await widgetSession?.getTokenForRequest().catch(()=>widgetSession.token);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@neurodyn/react-room-viewer",
3
3
  "type": "module",
4
- "version": "0.0.10",
4
+ "version": "0.0.11",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },