diff --git a/src/components/Dialogs/HelpDialog/index.tsx b/src/components/Dialogs/HelpDialog/index.tsx
index 8e9ea7a741..31ff86a96c 100644
--- a/src/components/Dialogs/HelpDialog/index.tsx
+++ b/src/components/Dialogs/HelpDialog/index.tsx
@@ -23,11 +23,17 @@ const ReadTime = () => (
<>
} weight="md">
-
+
-
+
>
@@ -41,7 +47,10 @@ const ReadCount = () => (
-
+
>
diff --git a/src/components/Forms/PaymentForm/PayTo/SetAmount/index.tsx b/src/components/Forms/PaymentForm/PayTo/SetAmount/index.tsx
index f2abb6c4f8..ec762b9fbf 100644
--- a/src/components/Forms/PaymentForm/PayTo/SetAmount/index.tsx
+++ b/src/components/Forms/PaymentForm/PayTo/SetAmount/index.tsx
@@ -5,13 +5,13 @@ import _get from 'lodash/get'
import _pickBy from 'lodash/pickBy'
import { useContext, useEffect, useRef, useState } from 'react'
import { useAccount } from 'wagmi'
+import { polygon } from 'wagmi/chains'
import {
PAYMENT_CURRENCY as CURRENCY,
PAYMENT_MAXIMUM_PAYTO_AMOUNT,
} from '~/common/enums'
import {
- featureSupportedChains,
formatAmount,
numRound,
validateCurrency,
@@ -110,7 +110,7 @@ const SetAmount: React.FC = ({
viewer.info.ethAddress?.toLowerCase() === address?.toLowerCase()
// TODO: support multiple networks
- const targetNetork = featureSupportedChains.curation[0]
+ const targetNetork = polygon
const { isUnsupportedNetwork, switchToTargetNetwork, isSwitchingNetwork } =
useTargetNetwork(targetNetork)