Skip to content

Conversation

@lakchote
Copy link
Contributor

@lakchote lakchote commented Jan 28, 2026

This reverts commit 9cd909b.

Explanation of Change

It's basically an un-revert PR of #79498 with some conflicts that needed to be solved.

Plus, a fix for #80718 (comment)

Fixed Issues

Related to #80175

Tests

  • Verify that no errors appear in the JS console

Action Performed:

Precondition:

  • Rules are enabled.
  • Attendee tracking is enabled in Rules.
  1. Go to staging.new.expensify.com
  2. Go to self DM.
  3. Create an expense.
  4. Open the expense.
  5. Click Attendees field.
  6. Enter name and phone number which is not in the contact list.
  7. Go to Reports > Expenses.
  8. Open Filters > Attendees.
    → Name and phone number in Step 6 appear in Attendees list.
  9. Go to Account > Troubleshoot > Clear cache and restart > Reset and refresh or relogin.
  10. Go to Reports > Expenses.
  11. Open Filters > Attendees.

Expected Result:

Name and phone number in Step 6 will appear in Attendees list.

Screen.Recording.2026-01-28.at.08.49.21.mov

Offline tests

Offline tests

NA

QA Steps

// TODO: These must be filled out, or the issue title must include "[No QA]."

  • Verify that no errors appear in the JS console

Same as in tests

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android / native
    • Android / Chrome
    • iOS / native
    • iOS / Safari
    • MacOS / Chrome / Safari
    • MacOS / Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I verified the translation was requested/reviewed in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • If we are not using the full Onyx data that we loaded, I've added the proper selector in order to ensure the component only re-renders when the data it is using changes
      • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG))
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR author checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari

@lakchote lakchote self-assigned this Jan 28, 2026
@lakchote lakchote requested a review from eVoloshchak January 28, 2026 07:57
@codecov
Copy link

codecov bot commented Jan 28, 2026

Codecov Report

❌ Patch coverage is 25.77320% with 72 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
...nents/Search/SearchFiltersParticipantsSelector.tsx 0.00% 64 Missing ⚠️
src/pages/Search/AdvancedSearchFilters.tsx 0.00% 4 Missing ⚠️
...nListWithSections/Search/UserSelectionListItem.tsx 0.00% 2 Missing ⚠️
src/hooks/useSearchSelector.base.ts 0.00% 1 Missing ⚠️
...pages/iou/request/MoneyRequestAttendeeSelector.tsx 0.00% 1 Missing ⚠️
Files with missing lines Coverage Δ
src/CONST/index.ts 87.50% <ø> (ø)
src/libs/OptionsListUtils/index.ts 77.62% <100.00%> (+1.65%) ⬆️
src/libs/SearchQueryUtils.ts 70.91% <100.00%> (+0.03%) ⬆️
src/libs/actions/IOU/index.ts 70.53% <100.00%> (+<0.01%) ⬆️
...hAdvancedFiltersPage/SearchFiltersAttendeePage.tsx 0.00% <ø> (ø)
src/hooks/useSearchSelector.base.ts 19.40% <0.00%> (-0.30%) ⬇️
...pages/iou/request/MoneyRequestAttendeeSelector.tsx 0.00% <0.00%> (ø)
...nListWithSections/Search/UserSelectionListItem.tsx 0.00% <0.00%> (ø)
src/pages/Search/AdvancedSearchFilters.tsx 0.00% <0.00%> (ø)
...nents/Search/SearchFiltersParticipantsSelector.tsx 0.00% <0.00%> (ø)

... and 17 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@lakchote lakchote changed the title [HOLD Backend PR] Reapply "Fix filtering attendees names in the Reports page" Reapply "Fix filtering attendees names in the Reports page" Jan 29, 2026
@lakchote lakchote marked this pull request as ready for review January 29, 2026 05:55
@lakchote lakchote requested review from a team as code owners January 29, 2026 05:55
@melvin-bot melvin-bot bot requested review from JmillsExpensify and removed request for a team January 29, 2026 05:55
@lakchote
Copy link
Contributor Author

@eVoloshchak can you review it please? It's the unrevert of #79498

@melvin-bot melvin-bot bot requested a review from MariaHCD January 29, 2026 05:56
@melvin-bot
Copy link

melvin-bot bot commented Jan 29, 2026

@MariaHCD Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@melvin-bot melvin-bot bot removed the request for review from a team January 29, 2026 05:56
return false;
}
seenAttendees.add(key);
return true;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❌ PERF-2 (docs)

Using .find() inside .filter() creates O(n²) complexity. For each attendee in the outer filter, .find() searches through the entire attendees array. This can be expensive when dealing with large lists of attendees.

Suggested fix: Create a Set for O(1) lookups:

const attendeeKeys = new Set(attendees.map(({email, displayName}) => email || displayName));
const filteredRecentAttendees = deduplicatedRecentAttendees
    .filter((attendee) => \!attendeeKeys.has(attendee.email || attendee.displayName || ""))
    .map((attendee) => ({...attendee, login: attendee.email || attendee.displayName, ...getPersonalDetailByEmail(attendee.email)}))
    .map((attendee) => getParticipantsOption(attendee, personalDetails));

Please rate this suggestion with 👍 or 👎 to help us improve! Reactions are used to monitor reviewer efficiency.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is probably a good comment


// Fallback: construct a minimal option from the identifier string to preserve
// name-only filters across sessions (e.g., after cache clear or on another device)
return {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❌ PERF-2 (docs)

Inside the map callback, recentAttendees?.find() is called for each identifier. If the identifier is not found in personalDetails, this creates unnecessary iterations through the recentAttendees array, resulting in O(n×m) complexity.

Suggested fix: Create a lookup map for recentAttendees before the mapping:

const recentAttendeesMap = new Map(
    recentAttendees?.map(att => [att.email || att.displayName, att]) ?? []
);

preSelectedOptions = initialAccountIDs.map((identifier) => {
    const participant = personalDetails[identifier];
    if (participant) return getSelectedOptionData(participant);
    
    const attendee = recentAttendeesMap.get(identifier);
    if (attendee) return getOptionDataFromAttendee(attendee);
    
    // Fallback...
}).filter((option): option is NonNullable<OptionData> => \!\!option);

Please rate this suggestion with 👍 or 👎 to help us improve! Reactions are used to monitor reviewer efficiency.

const computedSearchTerm = useMemo(() => {
return getSearchValueForPhoneOrEmail(debouncedSearchTerm, countryCode);
}, [debouncedSearchTerm, countryCode]);
const trimmedSearchInput = debouncedSearchTerm.trim();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❌ PERF-13 (docs)

The debouncedSearchTerm.trim() call is executed on every render, even though its result is only used inside the baseOptions useMemo. This creates unnecessary computation when the component re-renders for reasons other than debouncedSearchTerm changes.

Suggested fix: Move the trim operation inside a useMemo:

const trimmedSearchInput = useMemo(() => debouncedSearchTerm.trim(), [debouncedSearchTerm]);

This ensures .trim() is only called when debouncedSearchTerm actually changes.


Please rate this suggestion with 👍 or 👎 to help us improve! Reactions are used to monitor reviewer efficiency.

Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 5b064b5c85

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

@eVoloshchak
Copy link
Contributor

@lakchote, I just wanted to confirm: the original PR was reverted due to #80175. It was decided that #80175 is not a deploy blocker and not an issue caused by the original PR, so we're just re-applying the same PR back, is that correct?

@lakchote
Copy link
Contributor Author

lakchote commented Jan 30, 2026

@lakchote, I just wanted to confirm: the original PR was reverted due to #80175. It was decided that #80175 is not a deploy blocker and not an issue caused by the original PR, so we're just re-applying the same PR back, is that correct?

@eVoloshchak yes, a BE fix was needed. It's basically an un-revert PR with some conflicts that needed to be solved. Plus, a fix for #80718 (comment)

@eVoloshchak
Copy link
Contributor

eVoloshchak commented Feb 2, 2026

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
  • I checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified that the composer does not automatically focus or open the keyboard on mobile unless explicitly intended. This includes checking that returning the app from the background does not unexpectedly open the keyboard.
  • I verified tests pass on all platforms & I tested again on:
    • Android: HybridApp
    • Android: mWeb Chrome
    • iOS: HybridApp
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified there are no new alerts related to the canBeMissing param for useOnyx
  • I verified proper code patterns were followed (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG)
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • For any bug fix or new feature in this PR, I verified that sufficient unit tests are included to prevent regressions in this flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: HybridApp
Screen.Recording.2026-02-02.at.11.08.54.mov
Android: mWeb Chrome
Screen.Recording.2026-02-02.at.11.05.59.mov
iOS: HybridApp
Screen.Recording.2026-02-02.at.11.19.04.mov
iOS: mWeb Safari
Screen.Recording.2026-02-02.at.11.12.49.mov
MacOS: Chrome / Safari
Screen.Recording.2026-02-02.at.11.00.50.mov

Copy link
Contributor

@eVoloshchak eVoloshchak left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!
Also verified that this is working across devices signed in with the same account

@melvin-bot melvin-bot bot requested a review from dangrous February 2, 2026 10:25
@melvin-bot
Copy link

melvin-bot bot commented Feb 2, 2026

@dangrous Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@melvin-bot
Copy link

melvin-bot bot commented Feb 2, 2026

🎯 @eVoloshchak, thanks for reviewing and testing this PR! 🎉

An E/App issue has been created to issue payment here: #81158.

Copy link
Contributor

@JmillsExpensify JmillsExpensify left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great product polish. Looks solid!

@lakchote
Copy link
Contributor Author

lakchote commented Feb 2, 2026

@MariaHCD or @dangrous, can any one of you review it, please?

@dangrous
Copy link
Contributor

dangrous commented Feb 2, 2026

Looking now! Not quite a clean revert so will take a little bit

Copy link
Contributor

@dangrous dangrous left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A few comments but seems fine to me!

Comment on lines +1834 to +1846

if (shouldUseSearchInputValue) {
userToInvite.text = displayValue;
userToInvite.displayName = displayValue;
userToInvite.alternateText = displayValue;
} else {
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
userToInvite.text = userToInvite.text || displayValue;
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
userToInvite.displayName = userToInvite.displayName || displayValue;
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
userToInvite.alternateText = userToInvite.alternateText || displayValue;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

differs, but seems fine - looks like we added the shouldUseSearchInputValue here.

<PressableWithFeedback
accessibilityLabel={item.text ?? ''}
role={CONST.ROLE.BUTTON}
sentryLabel={CONST.SENTRY_LABEL.SEARCH.USER_SELECTION_CHECKBOX}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this used elsewhere? Still learning about Sentry (and this is a new change)

canInviteUser: false,
canInviteUser: shouldAllowNameOnlyOptions,
shouldAcceptName: shouldAllowNameOnlyOptions,
searchInputValue: searchTerm,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change makes sense but is not a straight revert. Is used later on

shouldAllowNameOnlyOptions,
personalDetails,
currentUserAccountID,
currentUserEmail,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thought this was a change, it's not, but GH won't let me delete this comment. So ignore me.

// Transform raw recentAttendees into Option[] format for use with getValidOptions (only for attendee filter)
const recentAttendeeLists = useMemo(
() => (shouldAllowNameOnlyOptions ? getFilteredRecentAttendees(personalDetails, [], recentAttendees ?? [], currentUserEmail, currentUserAccountID) : []),
[personalDetails, recentAttendees, currentUserEmail, currentUserAccountID, shouldAllowNameOnlyOptions],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How did this get through before without the currentUserEmail / currentUserAccountID stuff? Or was that from a concurrent PR?

return false;
}
seenAttendees.add(key);
return true;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is probably a good comment

@dangrous
Copy link
Contributor

dangrous commented Feb 2, 2026

@lakchote, I just wanted to confirm: the original PR was reverted due to #80175. It was decided that #80175 is not a deploy blocker and not an issue caused by the original PR, so we're just re-applying the same PR back, is that correct?

@eVoloshchak yes, a BE fix was needed. It's basically an un-revert PR with some conflicts that needed to be solved. Plus, a fix for #80718 (comment)

@lakchote it would be good to put this info in the PR description - the conflicts and the related fix, specifically. Shouldn't call this a revert/reapply, exactly.

@lakchote lakchote changed the title Reapply "Fix filtering attendees names in the Reports page" Reapply "Fix filtering attendees names in the Reports page" and add improvements Feb 2, 2026
@lakchote
Copy link
Contributor Author

lakchote commented Feb 2, 2026

Answering you here @dangrous:

Is this used elsewhere? Still learning about Sentry (and this is a new change)

This is now required to be used for the Pressable component (see action run here where lint failed without it):

image

How did this get through before without the currentUserEmail / currentUserAccountID stuff? Or was that from a concurrent PR?

These parameters were added as part of resolving merge conflicts when un-reverting. The original getFilteredRecentAttendees() function signature was updated in a concurrent change, so when re-applying this PR, we needed to pass the additional required parameters.

I've updated the PR description, thanks for the suggestion!

I'm going to proceed with the merge here @MariaHCD as we have one internal engineer review already, along with @eVoloshchak's review as a C+.

@lakchote lakchote merged commit fb2838d into main Feb 2, 2026
38 checks passed
@lakchote lakchote deleted the lucien/undo-revert-pr-80207 branch February 2, 2026 19:21
@OSBotify
Copy link
Contributor

OSBotify commented Feb 3, 2026

🚀 Deployed to staging by https://github.com/lakchote in version: 9.3.11-19 🚀

platform result
🕸 web 🕸 success ✅
🤖 android 🤖 cancelled 🔪
🍎 iOS 🍎 cancelled 🔪

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants