Skip to content

Commit

Permalink
Merge pull request #4828 from Giveth/Projects-with-$0-in-QF-round-mat…
Browse files Browse the repository at this point in the history
…ching-show-matching-funds-coming-soon.-message-instead-of-$0-#4613-

Projects with $0 in qf round matching show matching funds coming soon
  • Loading branch information
RamRamez authored Oct 7, 2024
2 parents f1bb984 + 3ebbbaf commit 3e164ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "givethdapp",
"version": "2.33.1",
"version": "2.33.2",
"private": true,
"scripts": {
"build": "next build",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ const ProjectTotalFundCard = ({ selectedQF }: IProjectTotalFundCardProps) => {
const selectedQFData = qfRounds?.find(round => round.id === selectedQF?.id);

const notDistributedFund =
!qfRoundHistory?.matchingFund && !selectedQF?.isActive;
!qfRoundHistory?.matchingFund &&
qfRoundHistory?.matchingFund !== 0 &&
!selectedQF?.isActive;

useEffect(() => {
if (!id) return;
Expand Down

0 comments on commit 3e164ec

Please sign in to comment.