From b0a32c92ab8ccf2bb1eaed227436e09080872a95 Mon Sep 17 00:00:00 2001 From: bitbeckers Date: Sun, 27 Oct 2024 13:23:28 +0700 Subject: [PATCH] fix(formatted): allow for any records in properties --- src/utils/formatter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/formatter.ts b/src/utils/formatter.ts index fa413cd..114d5c5 100644 --- a/src/utils/formatter.ts +++ b/src/utils/formatter.ts @@ -48,7 +48,7 @@ const formatHypercertData = ({ external_url?: string; image: string; version: string; - properties?: { trait_type: string; value: string }[]; + properties?: { trait_type: string; value: string; [k: string]: unknown }[]; impactScope: string[]; excludedImpactScope: string[]; workScope: string[];