From 00e2b7afbbe377d058571ac3bb0021ec6c8e2340 Mon Sep 17 00:00:00 2001 From: Tomek Marciniak Date: Sat, 12 Oct 2024 15:35:58 +0200 Subject: [PATCH] fix(klesia): remove union from send method params --- apps/klesia/src/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/klesia/src/schema.ts b/apps/klesia/src/schema.ts index afd15ea..8b0b036 100644 --- a/apps/klesia/src/schema.ts +++ b/apps/klesia/src/schema.ts @@ -32,7 +32,7 @@ export const SendableSchema = z.union([ SendZkAppBodySchema, ]); export const SendTransactionSchema = z.tuple([ - SendableSchema, + z.any(), z.enum(["payment", "delegation", "zkapp"]), ]);