Skip to content

Commit

Permalink
Update donation amount defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
rakyi committed Nov 15, 2024
1 parent f3b0de7 commit 6bbf3ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions site/DonateForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome/index.js"
import { faArrowRight, faInfoCircle } from "@fortawesome/free-solid-svg-icons"
import Bugsnag from "@bugsnag/js"

const ONETIME_DONATION_AMOUNTS = [10, 50, 100, 500, 1000]
const MONTHLY_DONATION_AMOUNTS = [5, 10, 20, 50, 100]
const ONETIME_DONATION_AMOUNTS = [20, 50, 100, 500, 1000]
const MONTHLY_DONATION_AMOUNTS = [5, 10, 25, 50, 100]

const ONETIME_DEFAULT_INDEX = 1
const MONTHLY_DEFAULT_INDEX = 1
const ONETIME_DEFAULT_INDEX = 2
const MONTHLY_DEFAULT_INDEX = 2

@observer
export class DonateForm extends React.Component {
Expand Down

0 comments on commit 6bbf3ac

Please sign in to comment.