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

13 lines
303 B
Plaintext

import { cache } from 'react';
import { createTranslator } from 'use-intl/core';
function getServerTranslatorImpl(config, namespace) {
return createTranslator({
...config,
namespace
});
}
var getServerTranslator = cache(getServerTranslatorImpl);
export { getServerTranslator as default };