Skip to content

Commit

Permalink
refactor(app-bar): re-order app icons
Browse files Browse the repository at this point in the history
  • Loading branch information
domw30 committed Dec 16, 2024
1 parent 84ff941 commit 28ed412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/app-bar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export class AppBar extends React.Component<Properties, State> {
<>
<div {...cn('')}>
<AppLink Icon={IconMessageSquare2} isActive={isActive('conversation')} label='Messenger' to='/conversation' />
<AppLink Icon={IconGlobe3} isActive={isActive('explorer')} label='Explorer' to='/explorer' />
{featureFlags.enableNotificationsApp && (
<AppLink
Icon={this.renderNotificationIcon}
Expand All @@ -58,6 +57,7 @@ export class AppBar extends React.Component<Properties, State> {
to='/notifications'
/>
)}
<AppLink Icon={IconGlobe3} isActive={isActive('explorer')} label='Explorer' to='/explorer' />
<WorldPanelItem Icon={IconDotsGrid} label='More Apps' isActive={false} onClick={this.openModal} />
</div>
{this.state.isModalOpen && <MoreAppsModal onClose={this.closeModal} />}
Expand Down

0 comments on commit 28ed412

Please sign in to comment.