Skip to content

Commit

Permalink
fix(memo): only show memo warning if account is custodial
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed Apr 27, 2021
1 parent 81efe89 commit c8f173f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class RequestShowAddress extends React.PureComponent<Props> {
Loading: () => null,
NotAsked: () => null
})}
{coinModel.isMemoBased && (
{coinModel.isMemoBased && selectedAccount.type === 'CUSTODIAL' && (
<InfoContainer>
<Text color='grey600' size='12px' weight={500}>
<FormattedMessage
Expand Down

0 comments on commit c8f173f

Please sign in to comment.