diff --git a/frontend/app/projects/[projectId]/runs/[runId]/TestCaseSelector.tsx b/frontend/app/projects/[projectId]/runs/[runId]/TestCaseSelector.tsx index d443e23..de20ad9 100644 --- a/frontend/app/projects/[projectId]/runs/[runId]/TestCaseSelector.tsx +++ b/frontend/app/projects/[projectId]/runs/[runId]/TestCaseSelector.tsx @@ -112,14 +112,14 @@ export default function TestCaseSelector({ } isDisabled={testCase.isIncluded} - onClick={() => onIncludeCase(testCase.id)} + onPress={() => onIncludeCase(testCase.id)} > Include in run } isDisabled={!testCase.isIncluded} - onClick={() => {onExcludeCase(testCase.id)}} + onPress={() => onExcludeCase(testCase.id)} > Exclude from run