Skip to content

Commit d719349

Browse files
authored
Merge pull request Expensify#65064 from dmkt9/fix/61099
Fix - Tooltip on the "expense reports" filter is not displayed
2 parents 81d84d7 + 04a32a6 commit d719349

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/Search/SearchTypeMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ function SearchTypeMenu({queryJSON}: SearchTypeMenuProps) {
238238
const previousItemCount = typeMenuSections.slice(0, sectionIndex).reduce((acc, sec) => acc + sec.menuItems.length, 0);
239239
const flattenedIndex = previousItemCount + itemIndex;
240240
const focused = activeItemIndex === flattenedIndex;
241-
const shouldShowTooltip = item.translationPath === 'common.expenseReports' && !focused && shouldShowExpenseReportsTypeTooltip;
241+
const shouldShowTooltip = item.translationPath === 'common.reports' && !focused && shouldShowExpenseReportsTypeTooltip;
242242

243243
const onPress = singleExecution(() => {
244244
if (shouldShowTooltip) {

0 commit comments

Comments
 (0)