Skip to content

Commit

Permalink
Fix loading overlay header for PrivateNotes page
Browse files Browse the repository at this point in the history
  • Loading branch information
hungvu193 committed Sep 21, 2023
1 parent b00e8a0 commit dc650be
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 dc650be

Please sign in to comment.