Files
klz-cables.com/.pnpm-store/v10/files/7d/ed2eaf008930d8da9c5e45c3bffa61fb81cef0e133c2406dafb49863c52b24f0b1b0e70ec7aaca42349bd32b24d0387fae38916d85b080107871d974d3e021
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

29 lines
729 B
Plaintext

'use client';
import { c as _c } from "react/compiler-runtime";
import { jsx as _jsx } from "react/jsx-runtime";
import { Modal } from '@faceless-ui/modal';
import React from 'react';
import { useEditDepth } from '../../providers/EditDepth/index.js';
export function FullscreenModal(props) {
const $ = _c(3);
const currentDepth = useEditDepth();
let t0;
if ($[0] !== currentDepth || $[1] !== props) {
t0 = _jsx(Modal, {
closeOnBlur: false,
...props,
style: {
...(props.style || {}),
zIndex: `calc(100 + ${currentDepth || 0} + 1)`
}
});
$[0] = currentDepth;
$[1] = props;
$[2] = t0;
} else {
t0 = $[2];
}
return t0;
}
//# sourceMappingURL=index.js.map