Skip to content

Commit

Permalink
clients/web: fix Funding page
Browse files Browse the repository at this point in the history
  • Loading branch information
frankie567 committed Jul 22, 2024
1 parent d83a85b commit 0efc897
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import IssueListItem from '@/components/Issues/IssueListItem'
import { DashboardBody } from '@/components/Layout/DashboardLayout'
import Spinner from '@/components/Shared/Spinner'
import { HowToVoteOutlined } from '@mui/icons-material'
import { Pledge } from '@polar-sh/sdk'

Expand Down Expand Up @@ -43,14 +42,6 @@ export default function ClientPage() {

const havePledges = (pledges.data?.items?.length || 0) > 0

if (!isLoaded || !org) {
return (
<DashboardBody>
<Spinner />
</DashboardBody>
)
}

return (
<DashboardBody>
{pledges.isFetched && !havePledges ? (
Expand Down

0 comments on commit 0efc897

Please sign in to comment.