2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-15 18:12:54 +00:00

For #21694 - Only show the divider line in between items in the Recent Searches

This commit is contained in:
Gabriel Luong 2021-10-04 15:58:58 -04:00 committed by mergify[bot]
parent 8c2cbb4e41
commit 5fc979090a

View File

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