Skip to content

Commit

Permalink
Merge pull request #4901 from Giveth/fix/modify_recurring_donations
Browse files Browse the repository at this point in the history
Fix/Ending recurring base donation
  • Loading branch information
kkatusic authored Dec 19, 2024
2 parents 1efadc5 + a49b8de commit 527a232
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const EndStreamInnerModal: FC<IEndStreamInnerModalProps> = ({
throw new Error('Provider or signer not found');

const _options = {
chainId: config.OPTIMISM_CONFIG.id,
chainId: recurringNetworkId,
provider: provider,
resolverAddress: isProduction
? undefined
Expand All @@ -128,7 +128,7 @@ const EndStreamInnerModal: FC<IEndStreamInnerModalProps> = ({
const info = {
recurringDonationId: parseInt(donation.id),
projectId: +donation.project.id,
chainId: config.OPTIMISM_NETWORK_NUMBER,
chainId: recurringNetworkId,
txHash: tx.hash,
superToken: _superToken,
};
Expand Down

0 comments on commit 527a232

Please sign in to comment.