Files
klz-cables.com/.pnpm-store/v10/files/05/cd2f1b6be0f03bbfe514a4b2c45a49cc21563195a220da4093e6bf109307c4fc5f9dd58331b2cf05742645f7f3c4c1a76ecca4a706b24579164307ce99098d
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
502 B
Plaintext

'use client';
import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import { DraggableFileDetails } from './DraggableFileDetails/index.js';
import { StaticFileDetails } from './StaticFileDetails/index.js';
export const FileDetails = props => {
const {
hasMany
} = props;
if (hasMany) {
return /*#__PURE__*/_jsx(DraggableFileDetails, {
...props
});
}
return /*#__PURE__*/_jsx(StaticFileDetails, {
...props
});
};
//# sourceMappingURL=index.js.map