From 87a3caa944581ee2bdef7ec706ad85190fa240eb Mon Sep 17 00:00:00 2001 From: Robin Labat Date: Fri, 29 Jul 2022 16:55:23 +0200 Subject: [PATCH] clean console.log from debug --- deno/lib/types.ts | 1 - src/types.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/deno/lib/types.ts b/deno/lib/types.ts index 3241e0f57..d41e66181 100644 --- a/deno/lib/types.ts +++ b/deno/lib/types.ts @@ -2156,7 +2156,6 @@ type ZodOriginType = [ function getSourceType(type: T): ZodSourceType { if (type._def.typeName === ZodFirstPartyTypeKind.ZodLazy) { - console.log("lazy"); return getSourceType( (type as unknown as ZodLazy).schema ) as ZodSourceType; diff --git a/src/types.ts b/src/types.ts index 9e3573f06..d32db550a 100644 --- a/src/types.ts +++ b/src/types.ts @@ -2156,7 +2156,6 @@ type ZodOriginType = [ function getSourceType(type: T): ZodSourceType { if (type._def.typeName === ZodFirstPartyTypeKind.ZodLazy) { - console.log("lazy"); return getSourceType( (type as unknown as ZodLazy).schema ) as ZodSourceType;