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

8 lines
304 B
Plaintext

import { APIError } from './APIError.js';
export class InvalidFieldJoin extends APIError {
constructor(field){
super(`Invalid join field ${field.name}. The config does not have a field '${field.on}' in collection '${field.collection}'.`);
}
}
//# sourceMappingURL=InvalidFieldJoin.js.map