Files
klz-cables.com/.pnpm-store/v10/files/1c/e5a5aa0858fcb47779bbfc42be0707db92d4055065606207ea1363c702581a3f411aab01801e868b38334cc641d0974c247c53a6ffb0a0f433b39c5a215b63
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

14 lines
344 B
Plaintext

import { formatAdminURL } from 'payload/shared';
export const handleGoBack = ({
adminRoute,
collectionSlug,
router,
serverURL
}) => {
const redirectRoute = formatAdminURL({
adminRoute,
path: collectionSlug ? `/collections/${collectionSlug}` : '/'
});
router.push(redirectRoute);
};
//# sourceMappingURL=handleGoBack.js.map