diff --git a/src/components/SubmissionGrid.tsx b/src/components/SubmissionGrid.tsx index 1af7ce528..64ed9017d 100644 --- a/src/components/SubmissionGrid.tsx +++ b/src/components/SubmissionGrid.tsx @@ -55,8 +55,9 @@ const isFormioPaginationResponse = ( const toString = (value: JSON) => { switch (typeof value) { case 'object': + case 'number': return JSON.stringify(value); - case 'string': + default: return value; } };