diff --git a/src/webview/App.vue b/src/webview/App.vue
index fa0446e..784f875 100644
--- a/src/webview/App.vue
+++ b/src/webview/App.vue
@@ -3,11 +3,19 @@
-
+
+
+
-
-
diff --git a/src/webview/components/ConnectionPopup.vue b/src/webview/components/ConnectionPopup.vue
index 5216500..ae0671e 100644
--- a/src/webview/components/ConnectionPopup.vue
+++ b/src/webview/components/ConnectionPopup.vue
@@ -34,16 +34,16 @@
-
@@ -9,3 +5,7 @@ import { Background } from '@vue-flow/background'
+
+
diff --git a/src/webview/store.ts b/src/webview/store.ts
index ae07d49..2d662ac 100644
--- a/src/webview/store.ts
+++ b/src/webview/store.ts
@@ -3,9 +3,7 @@ import { defineStore } from "pinia";
import { computed, ref } from "vue";
export const useNodeStore = defineStore("nodes", () => {
- const nodes = ref([
- //{ id: "1", type: "project", connectable: true, position: { x: 10, y: 5 } },
- ]);
+ const nodes = ref([]);
const hasProjectNode = computed(() => nodes.value.findIndex((x) => x.type === "project") !== -1);