Skip to content

Commit

Permalink
fix(ui-ux): fully disable send to evm
Browse files Browse the repository at this point in the history
  • Loading branch information
pierregee committed Nov 21, 2023
1 parent 5b63897 commit e2b1f70
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,8 @@ export function SendScreen({ route, navigation }: Props): JSX.Element {
!formState.isValid ||
hasPendingJob ||
hasPendingBroadcastJob ||
token === undefined
token === undefined ||
(isEvmAddress && !isEvmFeatureEnabled)
}
label={translate("screens/SendScreen", "Continue")}
onSubmit={onSubmit}
Expand Down

0 comments on commit e2b1f70

Please sign in to comment.