-
Notifications
You must be signed in to change notification settings - Fork 12
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
Fix multiple issues #6075
Fix multiple issues #6075
Conversation
src/components/HomeScreenHeader.tsx
Outdated
@@ -105,7 +105,7 @@ const HomeScreenHeader: React.FC<HomeScreenHeaderProps> = ({ | |||
color={`${colorMode}.choosePlanHome`} | |||
medium | |||
> | |||
{capitalizeEachWord(title === wallet.more ? common.keeperSettings : title)} |
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 does not look good, please leave the header with the previous title and gear icon
@@ -118,6 +118,7 @@ | |||
"manageUTXO": "manage UTXO", | |||
"manageKeys": "Manage Keys", | |||
"manageKeysDesc": "Securely manage your keys with ease", | |||
"moreOption": "More Option", |
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.
Please delete
].filter(Boolean); | ||
default: | ||
return [ | ||
{ tag: 'Multi-key', color: Colors.mintGreen }, | ||
{ tag: getSchemeTag(wallet as Vault), color: Colors.LightMossGreen }, | ||
{ tag: 'Multi-key', color: Colors.LabelLight3 }, |
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's not enough to assign the colors like this, the colors need to be consistent, ie first pill color is the same for all then second is also same for all etc,
src/screens/Home/HomeScreen.tsx
Outdated
@@ -9,7 +9,7 @@ import ToastErrorIcon from 'src/assets/images/toast_error.svg'; | |||
|
|||
import KeysIcon from 'src/assets/images/homeGreenKeyIcon.svg'; | |||
import ConciergeIcon from 'src/assets/images/faq-green.svg'; | |||
import SettingIcon from 'src/assets/images/settingsGreenIcon.svg'; | |||
import SettingIcon from 'src/assets/images/more-green.svg'; |
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.
Return to the gear icon
|
#6064
#6062
#6030
#6002