Skip to content

Commit

Permalink
change the order of nav icons #753 (#768)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaashir authored Jun 1, 2021
1 parent 7d30e71 commit 572ed55
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions src/components/layout/MobileAppFrame/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -304,20 +304,20 @@ const MobileAppFrame = (props) => {
icon: <Badge badgeContent={count.unread || 0} color="secondary"><NotificationsIcon /></Badge>,
},
{
name: 'Wallet',
icon: <WalletIcon />,
path: `/@${username}/wallet`,
name: 'Display',
icon: <SunMoonIcon />,
onClick: showThemeModal,
type: 'action',
},
{
name: 'Profile',
path: `/@${username}/t/buzz?ref=nav`,
icon: <ProfileIcon />,
},
{
name: 'Display',
icon: <SunMoonIcon />,
onClick: showThemeModal,
type: 'action',
name: 'Wallet',
icon: <WalletIcon />,
path: `/@${username}/wallet`,
},
]
const isActivePath = (path, current) => {
Expand Down
16 changes: 8 additions & 8 deletions src/components/layout/SideBarLeft/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,21 +364,21 @@ const SideBarLeft = (props) => {
icon: <Badge badgeContent={count.unread || 0} color="secondary"><NotificationsIcon /></Badge>,
},
{
name: 'Wallet',
icon: <WalletIcon />,
path: `/@${username}/wallet`,
name: 'Theme',
icon: <SunMoonIcon />,
path: '#',
preventDefault: true,
onClick: showThemeModal,
},
{
name: 'Profile',
path: `/@${username}/t/buzz?ref=nav`,
icon: <ProfileIcon />,
},
{
name: 'Theme',
icon: <SunMoonIcon />,
path: '#',
preventDefault: true,
onClick: showThemeModal,
name: 'Wallet',
icon: <WalletIcon />,
path: `/@${username}/wallet`,
},
{
name: 'Switch Account',
Expand Down

0 comments on commit 572ed55

Please sign in to comment.