Files
klz-cables.com/.pnpm-store/v10/files/d5/784e13355eb01909ea8e9392a759cf23b34ce0893a23be69d7b29214ee4911ae15174b2261a735a0735cc4395254794781e6601a87f2354825c4da24d4b14d
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

37 lines
744 B
Plaintext

'use client';
import { c as _c } from "react/compiler-runtime";
import { useStepNav, useTranslation } from '@payloadcms/ui';
import React from 'react';
export const AccountClient = () => {
const $ = _c(4);
const {
setStepNav
} = useStepNav();
const {
t
} = useTranslation();
let t0;
let t1;
if ($[0] !== setStepNav || $[1] !== t) {
t0 = () => {
const nav = [];
nav.push({
label: t("authentication:account"),
url: "/account"
});
setStepNav(nav);
};
t1 = [setStepNav, t];
$[0] = setStepNav;
$[1] = t;
$[2] = t0;
$[3] = t1;
} else {
t0 = $[2];
t1 = $[3];
}
React.useEffect(t0, t1);
return null;
};
//# sourceMappingURL=index.client.js.map