phase-10: ui code enhancements

This commit is contained in:
Kazuma
2026-06-08 13:13:17 -04:00
parent ad1c3fe3c9
commit 7bc242911e
18 changed files with 179 additions and 182 deletions
+3 -3
View File
@@ -1,9 +1,9 @@
<script lang="ts">
import { createCall, deleteCall } from '$lib/api.js';
import { invalidateAll } from '$app/navigation';
import CallForm from '$lib/calls/CallForm.svelte';
import CallCard from '$lib/calls/CallCard.svelte';
import CalendarSection from '$lib/calls/CalendarSection.svelte';
import CallForm from '$lib/components/calls/CallForm.svelte';
import CallCard from '$lib/components/calls/CallCard.svelte';
import CalendarSection from '$lib/components/calls/CalendarSection.svelte';
import type { CalendarEvent } from '$lib/types.js';
interface MarketCall {
+3 -3
View File
@@ -2,9 +2,9 @@
import { portfolioStore } from '$lib/stores/portfolio.store.svelte.js';
import MarketContext from '$lib/components/shared/MarketContext.svelte';
import Spinner from '$lib/components/shared/Spinner.svelte';
import AddHoldingForm from '$lib/portfolio/AddHoldingForm.svelte';
import AdviceTable from '$lib/portfolio/AdviceTable.svelte';
import AccountsTable from '$lib/portfolio/AccountsTable.svelte';
import AddHoldingForm from '$lib/components/portfolio/AddHoldingForm.svelte';
import AdviceTable from '$lib/components/portfolio/AdviceTable.svelte';
import AccountsTable from '$lib/components/portfolio/AccountsTable.svelte';
const p = portfolioStore;