@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.
- package/dist/index.js +2 -3
- 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
|
|
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);
|