add funds: remove M$500 purchase option

This commit is contained in:
mantikoros 2022-04-09 18:56:05 -05:00
parent 5bf36d1963
commit ea07edcbd3
2 changed files with 6 additions and 6 deletions

View File

@ -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
}) {

View File

@ -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>