diff --git a/apps/renderer/src/modules/boost/modal.tsx b/apps/renderer/src/modules/boost/modal.tsx index 13143ef86f..b6a104f70b 100644 --- a/apps/renderer/src/modules/boost/modal.tsx +++ b/apps/renderer/src/modules/boost/modal.tsx @@ -19,7 +19,7 @@ export const BoostModalContent = ({ feedId }: { feedId: string }) => { const dPowerBigInt = BigInt(myWalletData?.dailyPowerToken ?? 0) const cPowerBigInt = BigInt(myWalletData?.cashablePowerToken ?? 0) const balanceBigInt = cPowerBigInt + dPowerBigInt - const [amount, setAmount] = useState(80) + const [amount, setAmount] = useState(0) const amountBigInt = from(amount, 18)[0] const wrongNumberRange = amountBigInt > balanceBigInt || amountBigInt <= BigInt(0) @@ -71,7 +71,11 @@ export const BoostModalContent = ({ feedId }: { feedId: string }) => { - +