Hide charity page to fix error

This commit is contained in:
James Grugett 2022-07-27 09:54:37 -07:00
parent f62b1037ff
commit 09d95f2b2b

View File

@ -33,10 +33,10 @@ export default function CharityPageWrapper() {
if (!charity) {
return <Custom404 />
}
return <CharityPage charity={charity} />
// return <CharityPage charity={charity} />
}
function CharityPage(props: { charity: Charity }) {
function _CharityPage(props: { charity: Charity }) {
const { charity } = props
const { name, photo, description } = charity