Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkime committed Feb 21, 2022
1 parent fade160 commit 0c6fd87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const defaultParams: Params = {
};

export const defaultValueFormatter = (value: unknown) => {
const content = typeof value === 'object' ? JSON.stringify(value) : String(value) ?? '-';
const content = typeof value === 'object' ? JSON.stringify(value) : value ?? '-';
return renderToString(<>{content}</>);
};

Expand Down

0 comments on commit 0c6fd87

Please sign in to comment.