-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show recipients alias on header #6944
Show recipients alias on header #6944
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Just need to get the build passing.
2520e1b
to
ce574db
Compare
24f8316
to
23b0071
Compare
@Krist14n I rebased this on the latest |
@@ -19,6 +19,7 @@ export default class SenderToRecipient extends PureComponent { | |||
senderAddress: PropTypes.string, | |||
recipientName: PropTypes.string, | |||
recipientAddress: PropTypes.string, | |||
recipientNickname: PropTypes.object, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this might need to be PropTypes.string
:
recipientNickname: PropTypes.object, | |
recipientNickname: PropTypes.string, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It most definitely should be a PropTypes.string
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This LGTM, thanks @Krist14n!
b54d02d
to
17bc4a5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR includes the account's alias on the header for the
SenderToRecipient
component