Files
klz-cables.com/.pnpm-store/v10/files/03/16ab1501bbc8e7158d65c54ec284825e4f565494d13daca9f84a24d0ae5835a08a136c0d6d5e83d461d713a9d25a09e466ec2269486de2c07b6762c3b0f669
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

10 lines
303 B
Plaintext

import getServerTranslator from '../server/react-server/getServerTranslator.js';
import useConfig from './useConfig.js';
function useTranslations(...[namespace]) {
const config = useConfig('useTranslations');
return getServerTranslator(config, namespace);
}
export { useTranslations as default };