Skip to content

Commit

Permalink
Merge pull request #580 from threshold-network/unmit-tbtc
Browse files Browse the repository at this point in the history
s/Unmit/Unmint/g

Fix the unsightly "Unmit" typo in redemptions.
  • Loading branch information
r-czajkowski committed Jul 25, 2023
2 parents 558db5b + 734aaa1 commit 469bfda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/tBTC/Bridge/Unmint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,15 +227,15 @@ type UnmintFormValues = {
wallet: RedemptionWalletData
}

type UnmitnFormProps = {
type UnmintFormProps = {
onSubmitForm: (values: UnmintFormValues) => void
findRedemptionWallet: (
amount: string,
redeemerOutputScript: string
) => Promise<RedemptionWalletData>
} & UnmintFormBaseProps

const UnmintForm = withFormik<UnmitnFormProps, UnmintFormValues>({
const UnmintForm = withFormik<UnmintFormProps, UnmintFormValues>({
mapPropsToValues: () => ({
amount: "",
btcAddress: "",
Expand Down Expand Up @@ -298,7 +298,7 @@ export const UnmintPageLayout: PageComponent = ({}) => {
<Outlet />
) : (
<BridgeProcessEmptyState
title="Ready to unmit tBTC?"
title="Ready to unmint tBTC?"
bridgeProcess="unmint"
/>
)}
Expand Down

0 comments on commit 469bfda

Please sign in to comment.