chore: pnpm up -r latest
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 4m6s

This commit is contained in:
Max Richter
2025-11-23 16:01:59 +01:00
parent 566b287550
commit 7818148b12
5 changed files with 32 additions and 14 deletions

View File

@@ -2,6 +2,7 @@
import type { GraphManager } from "./graph-manager.js";
import { HTML } from "@threlte/extras";
import { onMount } from "svelte";
import type { NodeType } from "@nodes/types";
export let position: [x: number, y: number] | null;
@@ -9,7 +10,7 @@
let input: HTMLInputElement;
let value: string = "";
let activeNodeId: string = "";
let activeNodeId: NodeType = "";
const allNodes = graph.getNodeDefinitions();