diff --git a/web/src/dialogs/EditAccount.vue b/web/src/dialogs/EditAccount.vue
new file mode 100644
index 0000000..26cd884
--- /dev/null
+++ b/web/src/dialogs/EditAccount.vue
@@ -0,0 +1,44 @@
+
+
+
+
+ ✎
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/web/src/pages/Account.vue b/web/src/pages/Account.vue
index 2106f6c..e5ec500 100644
--- a/web/src/pages/Account.vue
+++ b/web/src/pages/Account.vue
@@ -4,7 +4,7 @@ import Currency from "../components/Currency.vue";
import TransactionRow from "../components/TransactionRow.vue";
import TransactionInputRow from "../components/TransactionInputRow.vue";
import { useAccountStore } from "../stores/budget-account";
-import Modal from "../components/Modal.vue";
+import EditAccount from "../dialogs/EditAccount.vue";
const props = defineProps<{
budgetid: string
@@ -15,42 +15,11 @@ const accountStore = useAccountStore();
const CurrentAccount = computed(() => accountStore.CurrentAccount);
const TransactionsList = computed(() => accountStore.TransactionsList);
-const accountName = ref("");
-const accountOnBudget = ref(true);
-
-function editAccount(e : any) {
- accountStore.EditAccount(CurrentAccount.value?.ID ?? "", accountName.value, accountOnBudget.value);
-}
-
-function openEditAccount(e : any) {
- accountName.value = CurrentAccount.value?.Name ?? "";
- accountOnBudget.value = CurrentAccount.value?.OnBudget ?? true;
-}
{{ CurrentAccount?.Name }}
-
- ✎
-
-
-
-
-
-
-
-
+
Current Balance: