Something changed idk

This commit is contained in:
2026-02-13 18:02:52 -06:00
parent 628dc35dea
commit 7466bbdeac
4 changed files with 7 additions and 9 deletions
+1 -5
View File
@@ -5,11 +5,7 @@ export const companies = {
async fetch(identifier: string | number): Promise<CompanyController> {
const search = await prisma.company.findFirst({
where: {
OR: [
{ id: identifier as string },
{ cw_CompanyId: identifier as number },
{ cw_Identifier: identifier as string },
],
OR: [{ id: identifier as string }],
},
});