Skip to content

Commit

Permalink
Add 'didScreenTransitionEnd' prop to MoneyRequestParticipantsSelector
Browse files Browse the repository at this point in the history
  • Loading branch information
brunovjk committed Dec 7, 2023
1 parent b0268fa commit 9eafd1f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ const propTypes = {
/** Whether we are searching for reports in the server */
isSearchingForReports: PropTypes.bool,

/** Whether the screen transition has ended */
didScreenTransitionEnd: PropTypes.bool,

...withLocalizePropTypes,
};

Expand All @@ -78,6 +81,7 @@ const defaultProps = {
betas: [],
isDistanceRequest: false,
isSearchingForReports: false,
didScreenTransitionEnd: false,
};

function MoneyRequestParticipantsSelector({
Expand All @@ -94,6 +98,7 @@ function MoneyRequestParticipantsSelector({
iouType,
isDistanceRequest,
isSearchingForReports,
didScreenTransitionEnd,
}) {
const styles = useThemeStyles();
const [searchTerm, setSearchTerm] = useState('');
Expand Down

0 comments on commit 9eafd1f

Please sign in to comment.