Files
klz-cables.com/.pnpm-store/v10/files/7e/212b119834766a7b7c46e1b4f611262de3f2b45aa4cfc639b73dc2b127633d9077474e5eadbbf098ec4c67762c9b0b957153abb149a650ae7f77940f66818a
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
258 B
Plaintext

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