diff --git a/frontend/app/components/UsabilityTesting/TestOverview.tsx b/frontend/app/components/UsabilityTesting/TestOverview.tsx index 5fbbeca30..6aa17dc00 100644 --- a/frontend/app/components/UsabilityTesting/TestOverview.tsx +++ b/frontend/app/components/UsabilityTesting/TestOverview.tsx @@ -259,6 +259,7 @@ const ParticipantOverview = observer(() => { const TaskSummary = observer(() => { const { uxtestingStore } = useStore(); + const totalAttempts = uxtestingStore.testStats?.tests_attempts ?? 0 return (
@@ -283,7 +284,7 @@ const TaskSummary = observer(() => {
{!uxtestingStore.taskStats.length ? : null} {uxtestingStore.taskStats.map((tst, index) => ( - + ))}
);