Skip to content

Commit

Permalink
fix form (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoncalves authored Sep 16, 2024
1 parent b335c33 commit 237a830
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/proposals/create.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ import { rbtcIconSrc } from '@/shared/rbtcIconSrc'
import { ENV } from '@/lib/constants'

const ADDRESS_REGEX = /^0x[a-fA-F0-9]{40}$/
const rifMinimumAmount = ENV !== 'mainnet' ? 10 : 1
const rbtcMinimumAmount = ENV !== 'mainnet' ? 0.0001 : 0.000001
const rifMinimumAmount = ENV === 'mainnet' ? 10 : 1
const rbtcMinimumAmount = ENV === 'mainnet' ? 0.0001 : 0.000001

const FormSchema = z
.object({
Expand Down

0 comments on commit 237a830

Please sign in to comment.