diff --git a/frontend/src/Editor.svelte b/frontend/src/Editor.svelte index 69987aa..46f0b79 100644 --- a/frontend/src/Editor.svelte +++ b/frontend/src/Editor.svelte @@ -242,7 +242,6 @@ { const r = await fetch("/tasks.json") const j = await r.json() - - // backward compatibility - if (j.positions != null) { - for (const [id, pos] of Object.entries(j.positions)) { - j.tasks.find((t) => t.id == id).position = pos; - } - } - return j }