@proveanything/smartlinks-utils-ui 0.9.10 → 0.9.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.
@@ -2113,7 +2113,10 @@ var useShellDeepLink = (args) => {
2113
2113
  bootLoggedRef.current = true;
2114
2114
  console.info("[RecordsAdminShell] deep-link boot snapshot", {
2115
2115
  enabled: deepLinkState.enabled,
2116
- urlState: deepLinkState.urlState,
2116
+ urlStateRecordId: deepLinkState.urlState.recordId ?? null,
2117
+ urlStateScope: deepLinkState.urlState.scope ?? null,
2118
+ urlStateView: deepLinkState.urlState.view ?? null,
2119
+ urlStateRaw: JSON.stringify(deepLinkState.urlState),
2117
2120
  paramNames: deepLinkState.paramNames,
2118
2121
  windowHash: typeof window !== "undefined" ? window.location.hash : null,
2119
2122
  windowSearch: typeof window !== "undefined" ? window.location.search : null