From 399147f0d52f100284a07f3d17f98bf044fe684a Mon Sep 17 00:00:00 2001
From: lucasxia01 <lucasxia01@gmail.com>
Date: Tue, 10 Dec 2024 21:56:42 +0000
Subject: [PATCH] fix build

---
 yarn-project/circuit-types/src/interfaces/proving-job.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/yarn-project/circuit-types/src/interfaces/proving-job.ts b/yarn-project/circuit-types/src/interfaces/proving-job.ts
index c86d43f88c5..11d68afc50a 100644
--- a/yarn-project/circuit-types/src/interfaces/proving-job.ts
+++ b/yarn-project/circuit-types/src/interfaces/proving-job.ts
@@ -60,7 +60,7 @@ export type PublicInputsAndRecursiveProof<T, N extends number = typeof NESTED_RE
 function schemaForPublicInputsAndRecursiveProof<T extends object>(
   inputs: ZodFor<T>,
   proofSize = NESTED_RECURSIVE_PROOF_LENGTH,
-): ZodFor<PublicInputsAndRecursiveProof<T, typeof proofSize>> {
+): ZodFor<PublicInputsAndRecursiveProof<T>> {
   return z.object({
     inputs,
     proof: RecursiveProof.schemaFor(proofSize),