Files
klz-cables.com/.pnpm-store/v10/files/75/1735709294589a6bc75ecaab201631d953213a74b941201e5a3f549ac9214444ade495b6f29e4d3cfbf5a04fcfe466890c185beae3f2474aa7771e027c49fc
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

19 lines
484 B
Plaintext

"use client";
import { IntlProvider } from 'use-intl/react';
import { jsx } from 'react/jsx-runtime';
function NextIntlClientProvider({
locale,
...rest
}) {
if (!locale) {
throw new Error("Couldn't infer the `locale` prop in `NextIntlClientProvider`, please provide it explicitly.\n\nSee https://next-intl.dev/docs/configuration#locale" );
}
return /*#__PURE__*/jsx(IntlProvider, {
locale: locale,
...rest
});
}
export { NextIntlClientProvider as default };