We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c4c187 commit 3bcafdbCopy full SHA for 3bcafdb
src/features/dashboard/ui/ResponsesList.tsx
@@ -71,7 +71,7 @@ const ResponsesList = ({ listType}: ResponsesListProps) => {
71
setCurrentIndex={setCurrentIndex}
72
currentIndex={currentIndex}
73
itemsPerPage={itemsPerPage}
74
- responsesLength={response.length}
+ responsesLength={selectedResponse.length > 0 ? selectedResponse.length : response.length}
75
options={[{ v1: "전체", v2: "" }, ...response.map((res) => ({ v1: res.name, v2: res.email }))]}
76
/>
77
<SelectedResponseList
0 commit comments