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

20 lines
473 B
Plaintext

'use client';
import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import { WatchCondition } from './WatchCondition.js';
export const withCondition = Field => {
const CheckForCondition = props => {
const {
path
} = props;
return /*#__PURE__*/_jsx(WatchCondition, {
path: path,
children: /*#__PURE__*/_jsx(Field, {
...props
})
});
};
return CheckForCondition;
};
//# sourceMappingURL=index.js.map