Skip to content

Commit d8affd9

Browse files
committed
Removing testing code
1 parent 3d1ab98 commit d8affd9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

WordPress/src/main/java/org/wordpress/android/support/aibot/repository/AIBotSupportRepository.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import javax.inject.Inject
2020
import javax.inject.Named
2121

2222
private const val BOT_ID = "jetpack-chat-mobile"
23+
private const val ITEMS_PER_PAGE = 20
2324

2425
class AIBotSupportRepository @Inject constructor(
2526
private val appLogWrapper: AppLogWrapper,
@@ -75,9 +76,7 @@ class AIBotSupportRepository @Inject constructor(
7576
chatId = chatId.toULong(),
7677
params = GetBotConversationParams(
7778
pageNumber = pageNumber.toULong(),
78-
// TODO: this is set to 4 for testing purpose
79-
// The TODO is preventing the Pr to be merged. Change it to a higher number before that
80-
itemsPerPage = 4U
79+
itemsPerPage = ITEMS_PER_PAGE.toULong()
8180
)
8281
)
8382
}

0 commit comments

Comments
 (0)