Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ function StaticSearchTypeMenu({queryJSON}: {queryJSON: SearchQueryJSON}) {
const expensesSearch = suggestedSearches[CONST.SEARCH.SEARCH_KEYS.EXPENSES];
const submitSearch = suggestedSearches[CONST.SEARCH.SEARCH_KEYS.SUBMIT];

const tabs: Array<TabSelectorBaseItem<SearchKey>> = [
// Saved searches are keyed by their raw hash rather than by a SearchKey, so the tab keys widen to string.
const tabs: TabSelectorBaseItem[] = [
{key: reportsSearch.key, icon: expensifyIcons.Document, title: translate(reportsSearch.translationPath)},
{key: expensesSearch.key, icon: expensifyIcons.Receipt, title: translate(expensesSearch.translationPath)},
];
Expand Down
Loading