mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 22:50:12 -08:00
refactor: standardize import paths and clean up component imports
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
---
|
||||
import type { Account, Transaction } from "@types";
|
||||
import TransactionTable from "./TransactionTable.astro";
|
||||
import TransactionTable from "./TransactionTable";
|
||||
|
||||
interface Props {
|
||||
account: Account;
|
||||
@@ -18,5 +18,5 @@ const { account, transactions } = Astro.props;
|
||||
>
|
||||
</h1>
|
||||
</header>
|
||||
<TransactionTable client:load transactions={transactions} />
|
||||
<TransactionTable client:load />
|
||||
</main>
|
||||
|
||||
Reference in New Issue
Block a user