Files
klz-cables.com/.pnpm-store/v10/files/02/6360427aa56e63448c732d36709a362581556795199b851c3fa92ca10bdb3493fd933b06ce27bf1fca7048501069ecbaae4d43c93abab557413e6150805e6a
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
262 B
Plaintext

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