Files
klz-cables.com/.pnpm-store/v10/files/02/8e9c19d541ee3d1cdfea9951baf1d9da6cf3900d44044c413e7b8a8e43eb0e48fd5340951e6ef5f325a9c2a8b2ffb92e723594cefa831f41c1a059992d9dbe
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

20 lines
515 B
Plaintext

import { notFound } from 'next/navigation.js';
import { buildBrowseByFolderView } from './buildView.js';
export const BrowseByFolder = async args => {
try {
const {
View
} = await buildBrowseByFolderView(args);
return View;
} catch (error) {
if (error?.message === 'NEXT_REDIRECT') {
throw error;
}
if (error.message === 'not-found') {
notFound();
} else {
console.error(error); // eslint-disable-line no-console
}
}
};
//# sourceMappingURL=index.js.map