Skip to content

Commit

Permalink
removed unnecessary convert to string
Browse files Browse the repository at this point in the history
  • Loading branch information
aandreww-btw-ecwid committed Mar 22, 2024
1 parent 096a06c commit bc325fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ data class CustomerGroupsSearchRequest(
put("offset", request.offset.toString())
put("limit", request.limit.toString())
if (!request.keyword.isNullOrBlank()) {
put("keyword", request.keyword.toString())
put("keyword", request.keyword)
}
if (!request.customerGroupIds.isNullOrEmpty()) {
put("customerGroupIds", request.customerGroupIds.joinToString(","))
Expand Down

0 comments on commit bc325fe

Please sign in to comment.