File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55- added: Buy conversion tracking for Moonpay
66- added: Error tracking for failure to report conversions to referral server
7+ - changed: Remove whitespaces from custom token contract address input
78- fixed: Clear previous swap errors when new amounts are entered or swap assets are changed in ` SwapCreateScene `
89- fixed: Cases where it was possible to create duplicate custom tokens
910- fixed: Message about overriding a built-in token contract, which is not possible to do
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ function EditTokenSceneComponent(props: Props) {
224224 onChangeText = { value =>
225225 setLocation ( location => {
226226 const out = new Map ( location )
227- out . set ( item . key , value )
227+ out . set ( item . key , value . replace ( / \s / g , '' ) )
228228 return out
229229 } )
230230 }
You can’t perform that action at this time.
0 commit comments