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
2 people authored and jonnigs committed Nov 26, 2024
1 parent baab1b5 commit 5e48eca
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 5e48eca

Please sign in to comment.