Files
klz-cables.com/.pnpm-store/v10/files/0a/54b4376b6741d71eb94c2879ee5b661a4f80dfe5f2c33f34539b2ee0678cd0d7c53cdfced3c82aa66edfe5bd15c972921ebbe4211d0d44800d8827ffaa4da2
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

7 lines
236 B
Plaintext

interface Options {
readonly isEnabled: boolean;
readonly accountForScrollbars?: boolean;
}
export default function useScrollLock({ isEnabled, accountForScrollbars, }: Options): (element: HTMLElement | null) => void;
export {};