Remove console.log statements

This commit is contained in:
Andrew Kingston 2020-10-14 10:06:33 +01:00
parent 4d42e722a3
commit 5251efd837
2 changed files with 0 additions and 2 deletions

View File

@ -40,7 +40,6 @@
onMount(async () => { onMount(async () => {
if (!isEmpty(datasource)) { if (!isEmpty(datasource)) {
console.log(datasource)
data = await fetchData(datasource, $store) data = await fetchData(datasource, $store)
// Get schema for datasource // Get schema for datasource

View File

@ -46,7 +46,6 @@ export default async function fetchData(datasource, store) {
} }
async function fetchViewData() { async function fetchViewData() {
console.log("fetching view")
const { field, groupBy } = datasource const { field, groupBy } = datasource
const params = new URLSearchParams() const params = new URLSearchParams()