diff --git a/packages/server/src/sdk/app/tables/getters.ts b/packages/server/src/sdk/app/tables/getters.ts
index a8ad606647..ebf7b3547b 100644
--- a/packages/server/src/sdk/app/tables/getters.ts
+++ b/packages/server/src/sdk/app/tables/getters.ts
@@ -82,8 +82,11 @@ export async function getAllInternalTables(db?: Database): Promise
{
}
async function getAllExternalTables(): Promise {
+ // this is all datasources, we'll need to filter out internal
const datasources = await sdk.datasources.fetch({ enriched: true })
- const allEntities = datasources.map(datasource => datasource.entities)
+ const allEntities = datasources
+ .filter(datasource => datasource._id !== INTERNAL_TABLE_SOURCE_ID)
+ .map(datasource => datasource.entities)
let final: Table[] = []
for (let entities of allEntities) {
if (entities) {