1
0
Fork 0
mirror of synced 2024-07-01 20:41:03 +12:00

remove console logs

This commit is contained in:
kevmodrome 2020-12-18 11:12:00 +01:00
parent d62f0752da
commit 851515896f
No known key found for this signature in database
GPG key ID: 828D8FE4D235B551

View file

@ -18,7 +18,6 @@
let schema = {}
let fields = []
$: console.log(files[0])
$: valid = !schema || fields.every(column => schema[column].success)
$: dataImport = {
valid,
@ -44,7 +43,6 @@
}
async function validateCSV() {
console.log(csvString)
const response = await api.post("/api/tables/csv/validate", {
csvString,
schema: schema || {},