Skip to content

Commit

Permalink
Fix issues after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
kkosiorowska committed Apr 10, 2024
1 parent d920ad3 commit 7e0c787
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { selectMinStakeAmount } from "#/store/btc"
import UnstakeDetails from "./UnstakeDetails"

// TODO: Use a position amount
const MOCK_POSITION_AMOUNT = "2398567898"
const MOCK_POSITION_AMOUNT = BigInt("2398567898")

function UnstakeFormModal({
onSubmitForm,
Expand Down
2 changes: 1 addition & 1 deletion dapp/src/hooks/useCurrencyConversion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { useAppSelector } from "./store"

type CurrencyConversionType = {
currency: CurrencyType
amount?: number | string
amount?: number | string | bigint
}

// TODO: should be updated to handle another currencies
Expand Down

0 comments on commit 7e0c787

Please sign in to comment.