Skip to content

Commit fc5199a

Browse files
committed
example: Cleanup UITest.kt
1 parent a57a1fd commit fc5199a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/src/commonMain/kotlin/UITest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,10 +413,10 @@ private fun TopAppBarActions(
413413
enableWindowDim = false
414414
) {
415415
ListPopupColumn {
416-
items.take(3).forEachIndexed { index, navigationItem ->
416+
items.forEachIndexed { index, navigationItem ->
417417
DropdownImpl(
418418
text = navigationItem.label,
419-
optionSize = items.take(3).size,
419+
optionSize = items.size,
420420
isSelected = index == selectedPage,
421421
onSelectedIndexChange = {
422422
onPageSelected(index)

0 commit comments

Comments
 (0)