From bd98e8810e65e767cf0728c9dfa94cd2dca91927 Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Sat, 30 Apr 2022 08:09:20 -0400 Subject: [PATCH] Disable "Read more..." for now --- web/pages/charity/[charitySlug].tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/pages/charity/[charitySlug].tsx b/web/pages/charity/[charitySlug].tsx index e358f4e1..ff548dc5 100644 --- a/web/pages/charity/[charitySlug].tsx +++ b/web/pages/charity/[charitySlug].tsx @@ -76,7 +76,8 @@ function CharityPage(props: { charity: Charity }) { } function Blurb({ text }: { text: string }) { - const [open, setOpen] = useState(false) + // Default to open for now (aka don't actually hide any text yet.) + const [open, setOpen] = useState(true) // Calculate whether the full blurb is already shown const ref = useRef(null)