Skip to content

Commit

Permalink
Merge pull request Expensify#27911 from hungvu193/fix-27685
Browse files Browse the repository at this point in the history
Fix loading overlay header for PrivateNotes page
  • Loading branch information
Li357 authored Sep 22, 2023
2 parents 28987c4 + dc650be commit 757c121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/PrivateNotes/PrivateNotesListPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function PrivateNotesListPage({report, personalDetailsList, network, session}) {
onCloseButtonPress={() => Navigation.dismissModal()}
/>
{report.isLoadingPrivateNotes && _.isEmpty(lodashGet(report, 'privateNotes', {})) ? (
<FullScreenLoadingIndicator />
<FullScreenLoadingIndicator style={[styles.flex1, styles.pRelative]} />
) : (
_.map(privateNotes, (item, index) => getMenuItem(item, index))
)}
Expand Down

0 comments on commit 757c121

Please sign in to comment.