diff --git a/pages/api/v2/list/bots/new.ts b/pages/api/v2/list/bots/new.ts index fd1290a..0492f4f 100644 --- a/pages/api/v2/list/bots/new.ts +++ b/pages/api/v2/list/bots/new.ts @@ -5,7 +5,7 @@ import ResponseWrapper from '@utils/ResponseWrapper' import { BotList } from '@types' const NewList = RequestHandler().get(async (_req, res) => { - const result = await get.list.votes.load(1) + const result = await get.list.new.load(1) return ResponseWrapper(res, { code: 200, data: result }) })