diff --git a/client/helpers/get-json-string-object.js b/client/helpers/get-json-string-object.js index c868e39fe..7f6378f72 100644 --- a/client/helpers/get-json-string-object.js +++ b/client/helpers/get-json-string-object.js @@ -22,8 +22,7 @@ import getStringElipsis from './get-string-elipsis'; const getJsonStringObject = value => { - const jsonStringFull = - value !== null && value !== undefined ? JSON.stringify(value, null, 2) : ''; + const jsonStringFull = value !== undefined ? JSON.stringify(value, null, 2) : ''; const jsonStringDisplay = getStringElipsis(jsonStringFull); return {