diff options
| author | David Skoland <davidskoland@gmail.com> | 2026-03-28 14:09:06 +0100 |
|---|---|---|
| committer | David Skoland <davidskoland@gmail.com> | 2026-03-28 14:09:06 +0100 |
| commit | 6f407b54c3251b90463bc508852b031d72b0c673 (patch) | |
| tree | f5a86e282dd1c09b372fff842c5740b38bb1256e /webAO/client/fixLastArea.ts | |
| parent | 95145c824e252b030a5e53950c9f1ed39774c79a (diff) | |
remove UI related changes
Diffstat (limited to 'webAO/client/fixLastArea.ts')
| -rw-r--r-- | webAO/client/fixLastArea.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webAO/client/fixLastArea.ts b/webAO/client/fixLastArea.ts index 839b14c..a9979da 100644 --- a/webAO/client/fixLastArea.ts +++ b/webAO/client/fixLastArea.ts @@ -1,5 +1,4 @@ import { client } from "../client"; -import { renderAreaList } from "../dom/renderAreaList"; import { addTrack } from "./addTrack"; /** @@ -8,7 +7,8 @@ import { addTrack } from "./addTrack"; export const fix_last_area = () => { if (client.areas.length > 0) { const malplaced = client.areas.pop().name; - renderAreaList(); + const areas = document.getElementById("areas")!; + areas.removeChild(areas.lastChild); addTrack(malplaced); } }; |
