Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions src/apps/wallet/src/home/tabs/payments/PaymentsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,15 +198,6 @@ const PaymentsTab: FC = () => {
}
}}
onRemoveProvider={async function onRemoveProvider() {
const transactionId = selectedPaymentProvider.transactionId
if (transactionId === undefined) {
toast.error(
'Something went wrong. Please try again.',
{ position: toast.POSITION.BOTTOM_RIGHT },
)
return
}

try {
// eslint-disable-next-line max-len
const response: TransactionResponse = await removePaymentProvider(selectedPaymentProvider.type)
Expand Down
2 changes: 1 addition & 1 deletion src/apps/wallet/src/home/tabs/tax-forms/TaxFormsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const TAX_FORM_DETAILS = [
icon: <IconWorld />,
id: 'W-8BEN-E',
instructionsLabel: 'Instructions',
instructionsLink: 'https://www.irs.gov/pub/irs-pdf/iw8ben.pdf',
instructionsLink: 'https://www.irs.gov/pub/irs-pdf/iw8bene.pdf',
reasonDescription:
// eslint-disable-next-line max-len
'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.',
Expand Down
4 changes: 4 additions & 0 deletions src/apps/wallet/src/home/tabs/winnings/WinningsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,10 @@ const ListView: FC<ListViewProps> = (props: ListViewProps) => {
key: 'type',
label: 'Type',
options: [
{
label: 'Task Payment',
value: 'TASK_PAYMENT',
},
{
label: 'Contest Payment',
value: 'CONTEST_PAYMENT',
Expand Down