Skip to content

Commit

Permalink
Add "Married Filing Separately" option (#17)
Browse files Browse the repository at this point in the history
## Description

Also relabel "Joint" as "Married Filing Jointly" to match.

## Test Plan

Fill in form with the new value and make sure calculation succeeds.
You can tell the new value is used by entering an income of 100k and
looking at the EV incentives: MFS should be eligible for the new-EV
credit but not used-EV, and MFJ should be eligible for both.
  • Loading branch information
oyamauchi authored Aug 22, 2023
1 parent e3502f7 commit 5228b69
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/calculator-form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ const OWNER_STATUS_OPTIONS: OptionParam[] = [

const TAX_FILING_OPTIONS: OptionParam[] = [
{ value: 'single', label: 'Single' },
{ value: 'joint', label: 'Joint' },
{ value: 'joint', label: 'Married Filing Jointly' },
{ value: 'married_filing_separately', label: 'Married Filing Separately' },
{ value: 'hoh', label: 'Head of Household' },
];

Expand Down

1 comment on commit 5228b69

@vercel
Copy link

@vercel vercel bot commented on 5228b69 Aug 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.