fix: response card tags not updating (#4424)

This commit is contained in:
Dhruwang Jariwala
2024-12-09 17:02:28 +05:30
committed by GitHub
parent 8ffaf0748e
commit 1e95b8cf9e

View File

@@ -143,6 +143,7 @@ export const SingleResponseCard = ({
<SingleResponseCardBody survey={survey} response={response} skippedQuestions={skippedQuestions} />
<ResponseTagsWrapper
key={response.id}
environmentId={environmentId}
responseId={response.id}
tags={response.tags.map((tag) => ({ tagId: tag.id, tagName: tag.name }))}