fix empty response

Signed-off-by: nikolar <reyna.nikolayev@autodesk.com>
This commit is contained in:
nikolar
2024-02-27 16:56:09 -08:00
parent 9b40f57919
commit e150fe7e19
@@ -80,7 +80,8 @@ export const FeedbackResponseTable = (props: FeedbackResponseTableProps) => {
width: '35%',
render: (response: ResponseRow) => (
<>
{response.response?.length &&
{response?.response &&
response.response.length > 0 &&
response.response
?.split(',')
.map(res => <Chip key={res} size="small" label={res} />)}