diff --git a/src/js/preset-controller.js b/src/js/preset-controller.js index 278183396..bd15fea78 100644 --- a/src/js/preset-controller.js +++ b/src/js/preset-controller.js @@ -3,7 +3,7 @@ import * as DB from "./db"; import * as Notifications from "./notifications"; export function apply(id) { - console.log(DB.getSnapshot().presets); + // console.log(DB.getSnapshot().presets); DB.getSnapshot().presets.forEach((preset) => { if (preset.id == id) { Config.apply(JSON.parse(JSON.stringify(preset.config)));