[fenix] For https://github.com/mozilla-mobile/fenix/issues/21694 - Only show the divider line in between items in the Recent Searches

pull/600/head
Gabriel Luong 3 years ago committed by mergify[bot]
parent 33cf85203a
commit 8a78101fc4

@ -85,7 +85,7 @@ fun RecentlyVisited(
RecentVisitItem(
recentVisit = recentVisit,
menuItems = menuItems,
showDividerLine = index < VISITS_PER_COLUMN - 1,
showDividerLine = index < items.size - 1,
onRecentVisitClick = onRecentVisitClick
)
}

Loading…
Cancel
Save