Skip to content

Commit

Permalink
Change order of global create menu
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Jun 24, 2021
1 parent 11476f7 commit f5b8a7b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pages/home/sidebar/SidebarScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,18 +116,18 @@ class SidebarScreen extends Component {
text: this.props.translate('sidebarScreen.newChat'),
onSelected: () => Navigation.navigate(ROUTES.NEW_CHAT),
},
{
icon: Users,
text: this.props.translate('sidebarScreen.newGroup'),
onSelected: () => Navigation.navigate(ROUTES.NEW_GROUP),
},
...(Permissions.canUseIOU(this.props.betas) ? [
{
icon: MoneyCircle,
text: this.props.translate('iou.requestMoney'),
onSelected: () => Navigation.navigate(ROUTES.IOU_REQUEST),
},
] : []),
{
icon: Users,
text: this.props.translate('sidebarScreen.newGroup'),
onSelected: () => Navigation.navigate(ROUTES.NEW_GROUP),
},
...(Permissions.canUseIOU(this.props.betas) ? [
{
icon: Receipt,
Expand Down

0 comments on commit f5b8a7b

Please sign in to comment.