diff --git a/src/pages/survey-form/+component/SurveyFormListItem.tsx b/src/pages/survey-form/+component/SurveyFormListItem.tsx index 7e44198..a515554 100644 --- a/src/pages/survey-form/+component/SurveyFormListItem.tsx +++ b/src/pages/survey-form/+component/SurveyFormListItem.tsx @@ -1,5 +1,6 @@ import { ISurvey } from '@/utils/types'; import surveyVector from '@/assets/images/survey.svg'; +import { Button } from '@/components/ui/button'; type Props = { data: ISurvey; @@ -24,6 +25,30 @@ const SurveyFormListItem = ({ data }: Props) => { +
+ {data.complete ? ( + // + <> + ) : ( + + + + )} +
); };