diff --git a/package.json b/package.json index da22803c..b7aac94a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plotlink", - "version": "0.1.21", + "version": "0.1.22", "private": true, "workspaces": [ "packages/*" diff --git a/src/app/story/[storylineId]/page.tsx b/src/app/story/[storylineId]/page.tsx index abe3bcd2..aa24e615 100644 --- a/src/app/story/[storylineId]/page.tsx +++ b/src/app/story/[storylineId]/page.tsx @@ -23,6 +23,7 @@ import { ViewCount, ViewTracker } from "../../../components/ViewCount"; import { CommentSection } from "../../../components/CommentSection"; import { MobileActionBar } from "../../../components/MobileActionBar"; import { MarketCapBox } from "../../../components/MarketCapBox"; +import { TokenPriceBox } from "../../../components/TokenPriceBox"; /** Deduplicate plots by plot_index, keeping the first occurrence. */ function deduplicateByPlotIndex(plots: Plot[]) { @@ -296,8 +297,7 @@ function StoryHeader({ )}
-
{formatPrice(priceInfo.pricePerToken)} {RESERVE_LABEL}
-
Token Price
+
{storyline.plot_count}
diff --git a/src/components/PriceChart.tsx b/src/components/PriceChart.tsx index c0b6840a..9d14bed9 100644 --- a/src/components/PriceChart.tsx +++ b/src/components/PriceChart.tsx @@ -113,7 +113,7 @@ export function PriceChart({ tokenAddress, currentPriceRaw }: PriceChartProps) { if (!hasData) { return (
-

Price

+

Price History

@@ -156,7 +156,7 @@ export function PriceChart({ tokenAddress, currentPriceRaw }: PriceChartProps) { // All points filtered out — shouldn't happen, but fallback return (
-

Price

+

Price History

USD pricing data not yet available

); @@ -243,7 +243,7 @@ export function PriceChart({ tokenAddress, currentPriceRaw }: PriceChartProps) { return (
-

Price

+

Price History

{hasUsdData && (