add funds: remove M$500 purchase option
This commit is contained in:
parent
5bf36d1963
commit
ea07edcbd3
|
@ -134,11 +134,11 @@ export function ChooseCancelSelector(props: {
|
|||
)
|
||||
}
|
||||
|
||||
const fundAmounts = [500, 1000, 2500, 10000]
|
||||
const fundAmounts = [1000, 2500, 10000]
|
||||
|
||||
export function FundsSelector(props: {
|
||||
selected: 500 | 1000 | 2500 | 10000
|
||||
onSelect: (selected: 500 | 1000 | 2500 | 10000) => void
|
||||
selected: 1000 | 2500 | 10000
|
||||
onSelect: (selected: 1000 | 2500 | 10000) => void
|
||||
className?: string
|
||||
btnClassName?: string
|
||||
}) {
|
||||
|
|
|
@ -10,9 +10,9 @@ import { Page } from '../components/page'
|
|||
export default function AddFundsPage() {
|
||||
const user = useUser()
|
||||
|
||||
const [amountSelected, setAmountSelected] = useState<
|
||||
500 | 1000 | 2500 | 10000
|
||||
>(500)
|
||||
const [amountSelected, setAmountSelected] = useState<1000 | 2500 | 10000>(
|
||||
2500
|
||||
)
|
||||
|
||||
return (
|
||||
<Page>
|
||||
|
|
Loading…
Reference in New Issue
Block a user