diff --git a/packages/server/src/api/controllers/view/views.ts b/packages/server/src/api/controllers/view/views.ts index 0380519480..9627c0a1dc 100644 --- a/packages/server/src/api/controllers/view/views.ts +++ b/packages/server/src/api/controllers/view/views.ts @@ -8,7 +8,6 @@ export async function fetch(ctx: Ctx) { export async function findByTable(ctx: Ctx) { const tableId = `${DocumentType.TABLE}${SEPARATOR}${ctx.params.tableId}` - console.error(tableId) ctx.body = { views: await sdk.views.findByTable(tableId) } }