-
Notifications
You must be signed in to change notification settings - Fork 18
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
feat(tinlake-ui): update pool title, fix wording #63
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.
Thanks, just 2 comments 🎉
@@ -208,7 +208,7 @@ const TrancheOverview: React.FC<Props> = (props: Props) => { | |||
{card === 'redeem' && <RedeemCard {...props} setCard={setCard} updateTrancheData={updateTrancheData} />} | |||
|
|||
{trancheData?.token && trancheData.token.length > 0 && trancheData.token.length < 7 && ( | |||
<AddWalletLink onClick={addToWallet}>Add {trancheData?.token} to your wallet</AddWalletLink> | |||
<AddWalletLink onClick={addToWallet}>Display {trancheData?.token} in your wallet</AddWalletLink> |
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'm not sure Display
is clearer. Can we be a bit more wordy?
Maybe Add this token to your Metamask wallet.
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.
That's from Dennis's issue: #69. We should avoid the word "add" at least, since it implies "getting" the token. Whereas "display" avoids this connotation.
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 also think it's good to mention the actual token symbol in the text.
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 find that highly confusing since it’s not displayed anywhere else. But sure, we can improve that another time.
No description provided.