Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions pages/philanthropy/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -628,13 +628,13 @@ const Philanthropy = ({ posts = [] }) => {
<Flex sx={{ justifyContent: 'space-between' }} mt={[3, 4]}>
<Box>
<Text as="h2">View Hack Club's IRS Form 990s</Text>
<Text as="p">2024 Form will be shared when ready.</Text>
<Text as="p">2025 Form will be shared when ready.</Text>
</Box>
<Box>
<Button
as="a"
variant="outline"
href="https://projects.propublica.org/nonprofits/organizations/812908499/202423209349312247/full"
href="https://hc-cdn.hel1.your-objectstorage.com/s/v3/de615b00d6923a7b46ac6c866e9d2782a633a0c6_hack_club_fy24_990_-_public.pdf"
target="_blank"
mb={4}
sx={{
Expand All @@ -643,6 +643,22 @@ const Philanthropy = ({ posts = [] }) => {
float: 'right',
mt: 2
Copy link

Copilot AI Dec 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The 2024 button is missing the mr: 2 (margin-right) styling that all other year buttons (2023, 2022, 2021, 2020) have. This inconsistency will cause uneven spacing between the buttons. Add mr: 2 to the sx object to match the styling of the other buttons.

Suggested change
mt: 2
mt: 2,
mr: 2

Copilot uses AI. Check for mistakes.
}}
>
2024
</Button>
<Button
as="a"
variant="outline"
href="https://projects.propublica.org/nonprofits/organizations/812908499/202423209349312247/full"
target="_blank"
mb={4}
sx={{
fontSize: '1em !important',
width: 'fit-content',
float: 'right',
mt: 2,
mr: 2
}}
>
2023
</Button>
Expand Down