Skip to content

Commit

Permalink
fix(TaxForms): use residency country for chapter 3 (#10860)
Browse files Browse the repository at this point in the history
  • Loading branch information
Betree authored Dec 13, 2024
1 parent c6c358f commit 3d969cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/dashboard/sections/tax-information/W8BenForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -244,15 +244,15 @@ export const W8BenTaxFormFields = ({ formik }: { formik: FormikProps<W8BenTaxFor
name={field.name}
checked={field.value}
onCheckedChange={checked => formik.setFieldValue(field.name, checked === true)}
disabled={!values.countryOfCitizenship}
disabled={!values.residenceAddress?.country}
/>
<div className="inline align-text-bottom">
Within the meaning of the income tax treaty between the United States and this country, I certify that
the beneficial owner is a resident of the country defined above
<span className="italic">
{' ('}
{values.countryOfCitizenship
? i18nCountryName(intl, values.countryOfCitizenship)
{values.residenceAddress?.country
? i18nCountryName(intl, values.residenceAddress?.country)
: 'please select one'}
{').'}
</span>
Expand Down

0 comments on commit 3d969cf

Please sign in to comment.