Files
klz-cables.com/.pnpm-store/v10/files/8e/be9522886514c0f74a7f3dfebb6d733a267bcf13e3dfdafa6626262d5ee2085eb9d5aed7f771be9649801a80daab432dc70668ccca8e5805264e83df90f0d9
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

11 lines
342 B
Plaintext

import type { LabelFunction, StaticLabel } from 'payload';
import type React from 'react';
export type StepNavItem = {
label: LabelFunction | React.JSX.Element | StaticLabel;
url?: string;
};
export type ContextType = {
setStepNav: (items: StepNavItem[]) => void;
stepNav: StepNavItem[];
};
//# sourceMappingURL=types.d.ts.map