Remove console log

This commit is contained in:
Andrew Kingston 2022-12-07 09:02:31 +00:00
parent d4a7412163
commit 608576ff3b
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()
}