Skip to content

Commit

Permalink
fix transfer updates when chainId is 0 (#85)
Browse files Browse the repository at this point in the history
Co-authored-by: Kirill <pisarevkir@gmail.com>
  • Loading branch information
enemycnt and P1sar committed Aug 17, 2021
1 parent ec8f4e7 commit 4568fe0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Contexts/Adaptors/EVMAdaptors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,8 @@ export const EVMDestinationAdaptorProvider = ({
useEffect(() => {
if (
destinationChainConfig &&
homeChainConfig?.chainId &&
homeChainConfig?.chainId !== null &&
homeChainConfig?.chainId !== undefined &&
destinationBridge &&
depositNonce
) {
Expand Down

0 comments on commit 4568fe0

Please sign in to comment.