MCPcopy Create free account
hub / github.com/TaskingAI/TaskingAI / getBundleList

Function getBundleList

frontend/src/components/playground/index.tsx:231–242  ·  view source on GitHub ↗
(params: object)

Source from the content-addressed store, hash-verified

229 getBundleList(params1)
230 }, [])
231 const getBundleList = async (params: object) => {
232 try {
233 const res: any = await getPluginList(params)
234 setBundlesList(res.data)
235 } catch (e) {
236 const apiError = e as ApiErrorResponse;
237 const errorMessage: string = apiError.response.data.error.message;
238 toast.error(errorMessage)
239 }
240
241
242 }
243 const handleChangeSearchChatID = (e: any) => {
244 setSearchChatID(e.target.value)
245 }

Callers 2

PlaygroundFunction · 0.70
handleConfirmRequestFunction · 0.70

Calls 1

getPluginListFunction · 0.90

Tested by

no test coverage detected