From 28e701bc1304ea4bb02cdb5693a3401a94a1b8dd Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Fri, 17 May 2024 07:30:10 -1000 Subject: [PATCH] fix(federation): :bug: Fix incorrect name in UserSchema --- federation/schemas/base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/federation/schemas/base.ts b/federation/schemas/base.ts index a1286eb..05eb255 100644 --- a/federation/schemas/base.ts +++ b/federation/schemas/base.ts @@ -72,7 +72,7 @@ const UserSchema = EntitySchema.extend({ fields: z .array( z.object({ - name: ContentFormatSchema, + key: ContentFormatSchema, value: ContentFormatSchema, }), )