Skip to content

Commit

Permalink
feat(web): WHODAS calculator - Show 5 answers (#16992)
Browse files Browse the repository at this point in the history
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
RunarVestmann and kodiakhq[bot] authored Nov 22, 2024
1 parent bd78723 commit 6cf5d56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/components/connected/WHODAS/Calculator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const WHODASForm = ({ step, stepIndex, state, setState }: WHODASFormProps) => {
{answerOptions.map((option, answerIndex) => {
const id = `${step.title}-${questionIndex}-${answerIndex}`

if (answerIndex > 3) {
if (answerIndex > 4) {
return null
}

Expand Down

0 comments on commit 6cf5d56

Please sign in to comment.