From 12f39a17698e01e0f5f1c185b0ace51a6fefffcd Mon Sep 17 00:00:00 2001 From: Timur Ercan Date: Fri, 24 Feb 2023 15:59:19 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20date=20parse=20or=20similar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/pages/documents/[id]/signed.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/pages/documents/[id]/signed.tsx b/apps/web/pages/documents/[id]/signed.tsx index e64013764..ab1b2406b 100644 --- a/apps/web/pages/documents/[id]/signed.tsx +++ b/apps/web/pages/documents/[id]/signed.tsx @@ -102,7 +102,7 @@ export async function getServerSideProps(context: any) { return { props: { document: JSON.parse(JSON.stringify(recipient.Document)), - fields: fields, + fields: JSON.parse(JSON.stringify(fields)), }, }; }