diff --git a/src/app/dashboard/writer/page.tsx b/src/app/dashboard/writer/page.tsx index 03f5fe2b..52a5134f 100644 --- a/src/app/dashboard/writer/page.tsx +++ b/src/app/dashboard/writer/page.tsx @@ -1,5 +1,6 @@ "use client"; +import { useState } from "react"; import { useAccount } from "wagmi"; import { useQuery } from "@tanstack/react-query"; import { formatUnits } from "viem"; @@ -121,9 +122,11 @@ function StorylineDetail({ storyline, writerAddress }: { storyline: Storyline; w
- + Donations + +
{storyline.token_address ? : @@ -183,3 +186,30 @@ function DonationCount({ storylineId, tokenAddress }: { storylineId: number; tok
); } + +function DonationsTooltip() { + const [show, setShow] = useState(false); + return ( + + + {show && ( + + Donations +
+ + Sent directly to your wallet when donors contribute. Already in your account — no claiming needed. + +
+ )} +
+ ); +}