diff --git a/packages/builder/src/components/integration/QueryEditor.svelte b/packages/builder/src/components/integration/QueryEditor.svelte
index c4d42e9812..2bfa9009e2 100644
--- a/packages/builder/src/components/integration/QueryEditor.svelte
+++ b/packages/builder/src/components/integration/QueryEditor.svelte
@@ -134,7 +134,7 @@
editor = CodeMirror.fromTextArea(refs.editor, opts)
- editor.on("change", instance => {
+ editor.on("change", (instance) => {
if (!updating_externally) {
const value = instance.getValue()
dispatch("change", { value })
@@ -160,13 +160,12 @@
}
function sleep(ms) {
- return new Promise(fulfil => setTimeout(fulfil, ms))
+ return new Promise((fulfil) => setTimeout(fulfil, ms))
}
{#if label}
-