Skip to content

Commit

Permalink
comment isDataAnalysisDone
Browse files Browse the repository at this point in the history
  • Loading branch information
MohammadPCh committed Jun 24, 2024
1 parent bfe5774 commit 6c50343
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/apollo/gql/gqlQF.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const FETCH_ARCHIVED_QF_ROUNDS = gql`
endDate
totalDonations
uniqueDonors
isDataAnalysisDone
# isDataAnalysisDone // TODO: uncomment when backend is ready
}
}
`;
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,12 @@ export const ArchivedQFRoundsTable: FC<ArchivedQFRoundsTableProps> = ({
</P>
<P>{formatDonation(round.totalDonations, '$') || 0}</P>
<P>
{round.isDataAnalysisDone ? (
{/* {round.isDataAnalysisDone ? ( // TODO: uncomment when backend is ready
round.uniqueDonors
) : (
<AnalysisStatus>Pending</AnalysisStatus>
)}
)} */}
{round.uniqueDonors}
</P>
<Flex $flexDirection='column'>
<P>{formatDate(new Date(round.beginDate))}</P>
Expand Down

0 comments on commit 6c50343

Please sign in to comment.