Skip to content

Commit

Permalink
add missing icons
Browse files Browse the repository at this point in the history
  • Loading branch information
kosmydel committed Feb 8, 2024
1 parent eab2a13 commit 479203f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/pages/settings/AboutPage/AboutPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ function AboutPage() {

return (
<ScreenWrapper
includeSafeAreaPaddingBottom={false}
shouldEnablePickerAvoiding={false}
shouldEnableMaxHeight
shouldShowOfflineIndicatorInWideScreen
Expand Down
6 changes: 6 additions & 0 deletions src/pages/settings/InitialSettingsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ function InitialSettingsPage(props) {
Link.openOldDotLink(CONST.OLDDOT_URLS.INBOX);
},
link: () => Link.buildOldDotURL(CONST.OLDDOT_URLS.INBOX),
iconRight: Expensicons.NewWindow,
shouldShowRightIcon: true,
},
{
translationKey: 'initialSettingsPage.signOut',
Expand Down Expand Up @@ -221,6 +223,8 @@ function InitialSettingsPage(props) {
action: () => {
Link.openExternalLink(CONST.NEWHELP_URL);
},
iconRight: Expensicons.NewWindow,
shouldShowRightIcon: true,
link: CONST.NEWHELP_URL,
},
{
Expand Down Expand Up @@ -291,6 +295,8 @@ function InitialSettingsPage(props) {
onSecondaryInteraction={item.link ? (event) => openPopover(item.link, event) : undefined}
focused={activeRoute && item.routeName && activeRoute.toLowerCase().replaceAll('_', '') === item.routeName.toLowerCase().replaceAll('/', '')}
isPaneMenu
iconRight={item.iconRight}
shouldShowRightIcon={item.shouldShowRightIcon}
/>
);
})}
Expand Down

0 comments on commit 479203f

Please sign in to comment.