Skip to content

Commit

Permalink
codefactor: Fixed unnecessary parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonlom committed Mar 6, 2024
1 parent 7245de9 commit 51f289a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fun CatalogListBanner(
yield()
delay(5000)
pagerState.animateScrollToPage(
page = (pagerState.currentPage + 1) % (pagerState.pageCount)
page = pagerState.currentPage + 1 % pagerState.pageCount
)
}
}
Expand Down

0 comments on commit 51f289a

Please sign in to comment.