feat: enhance module resolution and improve API error handling

This commit is contained in:
Peter Wood
2025-05-17 21:45:43 -04:00
parent cf99168f8f
commit 9382e41a55
8 changed files with 96 additions and 51 deletions

View File

@@ -1,9 +1,11 @@
---
import type { Account } from '@types';
import type { Account } from "@types";
import AddTransactionForm from "./AddTransactionForm";
import AccountSummary from "./AccountSummary";
interface Props {
accounts: Account[];
initialAccount: Account;
accounts: Account[];
initialAccount: Account;
}
const { accounts, initialAccount } = Astro.props;