From 9f2809e89be02206bc34928b75881cef75edc9cb Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Thu, 21 May 2026 10:31:43 +0000 Subject: [PATCH] fix(GRO-1441): remove duplicate coatType/petSizeCategory from buildPet Lines 108-109 were duplicates of lines 102-103 from the PR #12 merge. Removing the duplicate pair resolves the TS1117 error on dev. Co-Authored-By: Paperclip --- packages/db/src/factories.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/db/src/factories.ts b/packages/db/src/factories.ts index cac71f7..c91f34a 100644 --- a/packages/db/src/factories.ts +++ b/packages/db/src/factories.ts @@ -105,8 +105,6 @@ export function buildPet(overrides: Partial & { clientId: string }): Pet photoKey: null, photoUploadedAt: null, image: null, - coatType: null, - petSizeCategory: null, createdAt: new Date("2025-01-01T00:00:00Z"), updatedAt: new Date("2025-01-01T00:00:00Z"), };