Files
klz-cables.com/.pnpm-store/v10/files/c3/93de82fcc8f7c57e9ad6f0ab575bb704650bfb6e82c09df50b89f09f934556b6aa23c62355ae355c49b4dfabd91f726a9a59111871ae7e7a6f1714545e6428
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

21 lines
518 B
Plaintext

import { notFound } from 'next/navigation.js';
import { renderListView } from '../List/index.js';
export const TrashView = async args => {
try {
const {
List: TrashList
} = await renderListView({
...args,
enableRowSelections: true,
trash: true,
viewType: 'trash'
});
return TrashList;
} catch (error) {
if (error.message === 'not-found') {
notFound();
}
console.error(error); // eslint-disable-line no-console
}
};
//# sourceMappingURL=index.js.map