summaryrefslogtreecommitdiff
path: root/frontend/components/prism/ChartCard.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/components/prism/ChartCard.tsx')
-rw-r--r--frontend/components/prism/ChartCard.tsx7
1 files changed, 3 insertions, 4 deletions
diff --git a/frontend/components/prism/ChartCard.tsx b/frontend/components/prism/ChartCard.tsx
index bc650d7..87bb399 100644
--- a/frontend/components/prism/ChartCard.tsx
+++ b/frontend/components/prism/ChartCard.tsx
@@ -23,8 +23,8 @@ export function ChartCard({ symbol, period, points, chartState, chartError, onCh
<section className="psm-card">
<div className="psm-card-head">
<div>
- <div className="psm-eyebrow">Price History</div>
- <h2 className="psm-card-title">{symbol}</h2>
+ <div className="psm-eyebrow">Price Action</div>
+ <h2 className="psm-card-title">{symbol} Price History</h2>
</div>
<div className="psm-tabs" role="tablist" aria-label="Chart range">
{PERIODS.map((option) => (
@@ -42,7 +42,7 @@ export function ChartCard({ symbol, period, points, chartState, chartError, onCh
</div>
</div>
- <p className="psm-chart-meta">Chart loading is isolated from the rest of Overview. A history miss only affects this card.</p>
+ <p className="psm-chart-meta">Interactive history for the selected window. If history fails, the rest of Overview stays intact.</p>
<div className="psm-chart-frame">
{chartState === "loading" ? <div className="psm-card-empty">Loading {period.toUpperCase()} history…</div> : null}
@@ -52,4 +52,3 @@ export function ChartCard({ symbol, period, points, chartState, chartError, onCh
</section>
);
}
-