Skip to content

Commit d7bd18b

Browse files
committed
fix: text corrections
Signed-off-by: Rakib Ansary <rakibansary@topcoder.com>
1 parent 4f9add3 commit d7bd18b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/apps/wallet/src/home/tabs/tax-forms/TaxFormsTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const TAX_FORM_DETAILS = [
8989
instructionsLink: 'https://www.irs.gov/pub/irs-pdf/iw8ben.pdf',
9090
reasonDescription:
9191
// eslint-disable-next-line max-len
92-
'Under current IRS guidance, foreign persons performing services outside of the U.S. are not subject to income tax withholding. However, Topcoder requires all such members to provide a properly filled out W-8BEN prior to issuing payment. In addition, prize money paid to foreign persons who are not performing services (such as winning an SRM competition) is subject to withholding taxes.',
92+
'Under current IRS guidance, foreign persons performing services outside of the U.S. are not subject to income tax withholding. However, Topcoder requires all such members to provide a properly filled out W-8BEN-E prior to issuing payment. In addition, prize money paid to foreign persons who are not performing services (such as winning an SRM competition) is subject to withholding taxes.',
9393
reasonTitle: 'Why do I need to complete Form W-8BEN-E?',
9494
},
9595
]

src/apps/wallet/src/lib/components/tax-form-card/TaxFormCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const TaxFormCard: React.FC<TaxFormCardProps> = (props: TaxFormCardProps) => (
7272
label={props.instructionsLabel}
7373
// eslint-disable-next-line react/jsx-no-bind
7474
onClick={() => {
75-
window.location.href = props.instructionsLink
75+
window.open(props.instructionsLink, '_blank')
7676
}}
7777
/>
7878
<Button primary label={props.completionLabel} onClick={props.onSetupClick} />

0 commit comments

Comments
 (0)