From 317815ace9be2a46bbfb5dfbd2c5618d45404f64 Mon Sep 17 00:00:00 2001 From: Adhitya Mamallan Date: Wed, 15 Nov 2023 16:00:32 +0100 Subject: [PATCH] Run linter to fix build issues --- client/helpers/get-json-string-object.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/helpers/get-json-string-object.js b/client/helpers/get-json-string-object.js index 25522c6e1..c868e39fe 100644 --- a/client/helpers/get-json-string-object.js +++ b/client/helpers/get-json-string-object.js @@ -22,7 +22,8 @@ import getStringElipsis from './get-string-elipsis'; const getJsonStringObject = value => { - const jsonStringFull = value !== null && value !== undefined ? JSON.stringify(value, null, 2) : ''; + const jsonStringFull = + value !== null && value !== undefined ? JSON.stringify(value, null, 2) : ''; const jsonStringDisplay = getStringElipsis(jsonStringFull); return {