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)