From 58ddf341890de6554fc6c5325f82a33f3e4b3632 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 14 Jul 2023 21:48:59 +0200 Subject: [PATCH] refactor: cleanup MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/utils/Utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Utils.ts b/src/utils/Utils.ts index 3ef99c5f..eba8ca44 100644 --- a/src/utils/Utils.ts +++ b/src/utils/Utils.ts @@ -297,7 +297,7 @@ export const JSONStringifyWithMapSupport = ( ): string => { return JSON.stringify( obj, - (key, value: Record) => { + (_, value: Record) => { if (value instanceof Map) { return { dataType: 'Map', -- 2.34.1