Files
klz-cables.com/.pnpm-store/v10/files/fb/7afb94d937b574aa32c2193339e2c3bdfa48b995ae7868ed6e3ab2f608af4472bfcbc4d6b82bf5aa0d941cac74c5df76a1d495d07df3390200fcd0761c441e
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

9 lines
454 B
Plaintext

import type { Locale } from 'use-intl';
import type { InitializedLocaleCookieConfig } from '../../routing/config.js';
/**
* We have to keep the cookie value in sync as Next.js might
* skip a request to the server due to its router cache.
* See https://github.com/amannn/next-intl/issues/786.
*/
export default function syncLocaleCookie(localeCookie: InitializedLocaleCookieConfig, pathname: string | null, locale: Locale, nextLocale?: Locale): void;