Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'develop' into feature/approve-asset-transfer
  • Loading branch information
MiltonTulli committed Nov 9, 2022
commit f3e17066839dd1fd6b899168e610d0067275c5c6
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ export const Mint: React.FC<ActionEditorProps> = ({
}
};

const submitAction = () => {
const submitAction = (values: RepMintFormValues) => {
onSubmit([
{
...decodedCall,
args: {
...decodedCall.args,
to: recipient,
to: values.recipient,
amount: ethers.utils.parseUnits(repAmount.toString()),
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
ANY_FUNC_SIGNATURE,
ERC20_TRANSFER_SIGNATURE,
ERC20_APPROVE_SIGNATURE,
preventEmptyString,
} from 'utils';
import { resolveUri } from 'utils/url';
import { ActionEditorProps } from '..';
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.