Skip to content

Commit

Permalink
For mozilla-mobile#21694 - Only show the divider line in between item…
Browse files Browse the repository at this point in the history
…s in the Recent Searches
  • Loading branch information
gabrielluong authored and mergify[bot] committed Oct 4, 2021
1 parent 8c2cbb4 commit 5fc9790
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ fun RecentlyVisited(
RecentVisitItem(
recentVisit = recentVisit,
menuItems = menuItems,
showDividerLine = index < VISITS_PER_COLUMN - 1,
showDividerLine = index < items.size - 1,
onRecentVisitClick = onRecentVisitClick
)
}
Expand Down

0 comments on commit 5fc9790

Please sign in to comment.