Add volume pane to ticker chart
Deploy / lint (push) Successful in 6s
Deploy / test (push) Successful in 58s
Deploy / deploy (push) Successful in 32s

This commit is contained in:
2026-07-03 08:09:27 +02:00
parent 7fd34d6de8
commit 2b0068ae08
2 changed files with 97 additions and 35 deletions
+2 -2
View File
@@ -346,8 +346,8 @@ export default function TickerDetailPage() {
/>
{/* Chart — always visible */}
<Section title="Price Chart">
{ohlcv.isLoading && <SkeletonCard className="h-[400px]" />}
<Section title="Price & Volume">
{ohlcv.isLoading && <SkeletonCard className="h-[440px]" />}
{ohlcv.isError && (
<SectionError
message={ohlcv.error instanceof Error ? ohlcv.error.message : 'Failed to load OHLCV data'}