diff --git a/internal/common/common.go b/internal/common/common.go index 7030f4e3e379847568661da255ba4f04008f8e13..d818a5f54767c691b9701170317d241d018ce2f9 100644 --- a/internal/common/common.go +++ b/internal/common/common.go @@ -203,12 +203,6 @@ func PageLimitFromRequest(r *http.Request) (page int, limit int, err error) { if page < 0 { page = 0 } - switch { - case limit > 100: - limit = 100 - case limit < 10: - limit = 10 - } return page, limit, nil }