Files
klz-cables.com/.pnpm-store/v10/files/4f/1e5be05ff5f8a8284d3b043ec808208156bf79e31f4e779479af4a6b469adbc7f2b02c4cc668f87e673a8775b104d30b55cac2d114ef1a4d40c458da1c0cab
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
265 B
Plaintext

import { cache } from 'react';
import getConfig from './getConfig.js';
async function getLocaleCachedImpl() {
const config = await getConfig();
return config.locale;
}
const getLocaleCached = cache(getLocaleCachedImpl);
export { getLocaleCached as default };