@proveanything/smartlinks-utils-ui 0.9.9 → 0.9.10
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,17 @@ 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
|
+
urlState: deepLinkState.urlState,
|
|
2117
|
+
paramNames: deepLinkState.paramNames,
|
|
2118
|
+
windowHash: typeof window !== "undefined" ? window.location.hash : null,
|
|
2119
|
+
windowSearch: typeof window !== "undefined" ? window.location.search : null
|
|
2120
|
+
});
|
|
2121
|
+
}
|
|
2111
2122
|
useEffect(() => {
|
|
2112
2123
|
if (!deepLinkState.enabled) return;
|
|
2113
2124
|
if (selectedItemId) return;
|