diff --git a/packages/ui/SingleResponseCard/index.tsx b/packages/ui/SingleResponseCard/index.tsx index c6d7a3d0a9..60c9780d20 100644 --- a/packages/ui/SingleResponseCard/index.tsx +++ b/packages/ui/SingleResponseCard/index.tsx @@ -255,17 +255,15 @@ export default function SingleResponseCard({ {timeSince(response.updatedAt.toISOString())} {!isViewer && ( - + { - if (!isSubmissionFresh || !response.finished) { + if (!isSubmissionFresh) { setDeleteDialogOpen(true); } }} className={`h-4 w-4 ${ - isSubmissionFresh || !response.finished + isSubmissionFresh ? "cursor-not-allowed text-gray-400" : "text-slate-500 hover:text-red-700" } `}