Remove console log

This commit is contained in:
Andrew Kingston 2022-12-07 09:02:31 +00:00
parent 9315cb9af7
commit 0b9dd37870
1 changed files with 1 additions and 4 deletions

View File

@ -22,10 +22,7 @@
$: schemaFields = Object.values(schema || {})
async function saveFilter() {
if (tempValue !== value) {
console.log("saving", tempValue)
dispatch("change", tempValue)
}
dispatch("change", tempValue)
notifications.success("Filters saved")
drawer.hide()
}