We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8b7cd27 + f73e461 commit 3efa912Copy full SHA for 3efa912
1 file changed
packages/polymath-issuer/src/pages/providers/ApplyForm.js
@@ -146,7 +146,11 @@ export const ApplyFormComponent = props => {
146
</Button>
147
</p>
148
149
- {networkId === MAINNET_NETWORK_ID ? (
+ {/*
150
+ We are not going to compare networkId to MAINNET_NETWORK_ID constant.
151
+ The former is a number and the later is a string. Fortunately, mainnet ID is 1 and will always be 1
152
+ */}
153
+ {networkId === 1 ? (
154
<p className="pui-input-hint">
155
When you click submit, an email which contains the information entered
156
on that screen will be sent to the Advisory firm(s) you have selected.
0 commit comments