Skip to content

Commit

Permalink
Fixing an issue with datasource fetch schema not passing the correct …
Browse files Browse the repository at this point in the history
…parameters to frontend-core function.
  • Loading branch information
mike12345567 committed Dec 17, 2024
1 parent 1b6f113 commit 4cdc030
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/builder/src/stores/builder/datasources.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ export function createDatasourcesStore() {
}

const updateSchema = async (datasource, tablesFilter) => {
const response = await API.buildDatasourceSchema({
datasourceId: datasource?._id,
tablesFilter,
})
const response = await API.buildDatasourceSchema(
datasource?._id,
tablesFilter
)
updateDatasource(response)
}

Expand Down

0 comments on commit 4cdc030

Please sign in to comment.