File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/website/components/help Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export const HowItWorks = () => {
1515 const steps = [
1616 {
1717 message : ' Connect your wallet and select the PoW Ethereum chain.' , isAtStep : ( ) => {
18- return ! account || ! isChainSupported
18+ return ! account || ( ! isChainSupported && ! processingCommitment )
1919 }
2020 } ,
2121 {
@@ -25,12 +25,12 @@ export const HowItWorks = () => {
2525 } ,
2626 {
2727 message : 'Sign a transaction for the dump on the PoW Ethereum chain.' , isAtStep : ( ) => {
28- return form . ethPoWAmount && ! form . signed && ! form . complete
28+ return form . ethPoWAmount && ! form . signed && ! form . complete && isChainSupported
2929 }
3030 } ,
3131 {
3232 message : 'Wait for someone to match your transaction or for it to expire.' , isAtStep : ( ) => {
33- return processingCommitment && form . signed && ! form . complete
33+ return ( processingCommitment && processingCommitment . id && ! form . complete ) || ( processingCommitment && form . signed && ! form . complete && isChainSupported )
3434 }
3535 } ,
3636 {
You can’t perform that action at this time.
0 commit comments