@proveanything/smartlinks-utils-ui 0.9.9 → 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.
@@ -2108,6 +2108,20 @@ var useShellDeepLink = (args) => {
2108
2108
  const [pendingDeepLinkRecordId, setPendingDeepLinkRecordId] = useState(null);
2109
2109
  const preserveInitialRecordIdRef = useRef(!!deepLinkState.urlState.recordId);
2110
2110
  const warnedMissingRef = useRef(/* @__PURE__ */ new Set());
2111
+ const bootLoggedRef = useRef(false);
2112
+ if (!bootLoggedRef.current) {
2113
+ bootLoggedRef.current = true;
2114
+ console.info("[RecordsAdminShell] deep-link boot snapshot", {
2115
+ enabled: deepLinkState.enabled,
2116
+ urlStateRecordId: deepLinkState.urlState.recordId ?? null,
2117
+ urlStateScope: deepLinkState.urlState.scope ?? null,
2118
+ urlStateView: deepLinkState.urlState.view ?? null,
2119
+ urlStateRaw: JSON.stringify(deepLinkState.urlState),
2120
+ paramNames: deepLinkState.paramNames,
2121
+ windowHash: typeof window !== "undefined" ? window.location.hash : null,
2122
+ windowSearch: typeof window !== "undefined" ? window.location.search : null
2123
+ });
2124
+ }
2111
2125
  useEffect(() => {
2112
2126
  if (!deepLinkState.enabled) return;
2113
2127
  if (selectedItemId) return;