diff --git a/src/sites/alpha.twizzle.net/edit/app.ts b/src/sites/alpha.twizzle.net/edit/app.ts
index 979c48aa9..c35653838 100644
--- a/src/sites/alpha.twizzle.net/edit/app.ts
+++ b/src/sites/alpha.twizzle.net/edit/app.ts
@@ -158,10 +158,6 @@ export class App {
#autofixEnabled: boolean = true;
// TODO: factor this out into a class
async #onSetupOrAlgChange() {
- console.log(this.#autofixEnabled);
- if (!this.#autofixEnabled) {
- return;
- }
(async () => {
const [originalPuzzleID, puzzleAlgWithIssue, puzzleSetupAlgWithIssue] =
await Promise.all([
@@ -195,29 +191,31 @@ export class App {
this.#autoNotationPuzzleOld = originalPuzzleID;
this.#autoNotationPuzzleNew = puzzleID;
- for (const elem of this.element.querySelectorAll(
- ".auto-notation-puzzle-old",
- )) {
- elem.textContent = puzzles[originalPuzzleID].fullName;
- }
for (const elem of this.element.querySelectorAll(
".auto-notation-puzzle-new",
)) {
elem.textContent = puzzleLoader.fullName;
}
- this.element.querySelector