Skip to content

Commit

Permalink
Merge pull request #38782 from Expensify/youssef_fix_empty_space_LHN
Browse files Browse the repository at this point in the history
Fix empty space displayed in the LHN

(cherry picked from commit 7728ce7)
  • Loading branch information
marcochavezf authored and OSBotify committed Mar 21, 2024
1 parent f42d6a3 commit 0bcdf51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/LHNOptionsList/LHNOptionsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function LHNOptionsList({
],
);

const extraData = useMemo(() => [reportActions, reports, policy, personalDetails], [reportActions, reports, policy, personalDetails]);
const extraData = useMemo(() => [reportActions, reports, policy, personalDetails, data.length], [reportActions, reports, policy, personalDetails, data.length]);

return (
<View style={style ?? styles.flex1}>
Expand Down

0 comments on commit 0bcdf51

Please sign in to comment.