diff --git a/src/routes/write/index.js b/src/routes/write/index.js index dcb5995bf1..c4d864f08e 100644 --- a/src/routes/write/index.js +++ b/src/routes/write/index.js @@ -55,9 +55,4 @@ Write.reload = async (params) => { }); winston.info(`[api] Adding ${pluginRouter.stack.length} route(s) to \`api/v3/plugins\``); router.use('/api/v3/plugins', pluginRouter); - - // 404 handling - router.use('/api/v3', (req, res) => { - helpers.formatApiResponse(404, res); - }); };