Files
klz-cables.com/.pnpm-store/v10/files/54/b78cb2fb2fa7e6fbe461bf27585c1298820b4fc38a3f1275266f09156ae9742fac916e0074a4cd499ca8e9f6902acf34b11407e9bddaa94dad122e80f7c31a
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

15 lines
396 B
Plaintext

import { rootProjectionNode } from './node/HTMLProjectionNode.mjs';
function useInstantLayoutTransition() {
return startTransition;
}
function startTransition(callback) {
if (!rootProjectionNode.current)
return;
rootProjectionNode.current.isUpdating = false;
rootProjectionNode.current.blockUpdate();
callback && callback();
}
export { useInstantLayoutTransition };