diff --git a/app/data/itlRepo.test.ts b/app/data/itlRepo.test.ts index 1b7ba1fe..21031a4e 100644 --- a/app/data/itlRepo.test.ts +++ b/app/data/itlRepo.test.ts @@ -27,9 +27,6 @@ describe("itlRepo", () => { expect(prisma.itlLookup.findFirstOrThrow).toHaveBeenCalledWith({ where: { postcode: postcodeDistrict, - itl3: { - not: null, - }, }, select: { itl3: true, diff --git a/app/data/itlRepo.ts b/app/data/itlRepo.ts index 656734a0..fadb0ba7 100644 --- a/app/data/itlRepo.ts +++ b/app/data/itlRepo.ts @@ -7,9 +7,6 @@ const getItl3ByPostcodeDistrict = async ( const { itl3 } = await prisma.itlLookup.findFirstOrThrow({ where: { postcode: postcodeDistrict, - itl3: { - not: null, - }, }, select: { itl3: true,