(page, limit)
| 81 | } |
| 82 | |
| 83 | const refreshCustomMcp = (page, limit) => { |
| 84 | const params = { |
| 85 | page: page || mcpCurrentPage, |
| 86 | limit: limit || mcpPageLimit |
| 87 | } |
| 88 | getAllCustomMcpServersApi.request(params) |
| 89 | } |
| 90 | |
| 91 | const handleChange = (event, nextView) => { |
| 92 | if (nextView === null) return |
no outgoing calls
no test coverage detected