Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
adhityamamallan committed Nov 15, 2023
1 parent 329084d commit b4cbf08
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/helpers/get-json-string-object.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
import getStringElipsis from './get-string-elipsis';

const getJsonStringObject = value => {
const jsonStringFull = value !== undefined ? JSON.stringify(value, null, 2) : '';
const jsonStringFull =
value !== undefined ? JSON.stringify(value, null, 2) : '';
const jsonStringDisplay = getStringElipsis(jsonStringFull);

return {
Expand Down

0 comments on commit b4cbf08

Please sign in to comment.