copy: fix role names
This commit is contained in:
parent
3fe0576f34
commit
e6fa6aabd7
@ -44,12 +44,12 @@ const SelectRoleCard = ({ handleAccept, handleRoleChange }: { handleAccept: () =
|
|||||||
<FormControlLabel
|
<FormControlLabel
|
||||||
value={Role.Validator}
|
value={Role.Validator}
|
||||||
control={<Radio />}
|
control={<Radio />}
|
||||||
label="Validator"
|
label="Validator / Service Provider"
|
||||||
/>
|
/>
|
||||||
<FormControlLabel
|
<FormControlLabel
|
||||||
value={Role.Participant}
|
value={Role.Participant}
|
||||||
control={<Radio />}
|
control={<Radio />}
|
||||||
label="Participant"
|
label="App Publisher"
|
||||||
/>
|
/>
|
||||||
</RadioGroup>
|
</RadioGroup>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
|
@ -55,8 +55,13 @@ const LandingPage = () => {
|
|||||||
setIsDisabled(false);
|
setIsDisabled(false);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<Box m={2} display="flex" justifyContent="center">
|
<Box m={2} display="flex" justifyContent="center" gap={2}>
|
||||||
<Button variant="outlined" color="primary" disabled={isDisabled}>
|
<Button
|
||||||
|
variant="outlined"
|
||||||
|
color="primary"
|
||||||
|
sx={{ color: "text.primary" }}
|
||||||
|
disabled={isDisabled}
|
||||||
|
>
|
||||||
<a
|
<a
|
||||||
href="/TermsAndConditions.pdf"
|
href="/TermsAndConditions.pdf"
|
||||||
download
|
download
|
||||||
|
@ -148,7 +148,7 @@ const OnboardingSuccess = () => {
|
|||||||
padding={5}
|
padding={5}
|
||||||
>
|
>
|
||||||
<Typography variant="body1" gutterBottom sx={{ p: 2 }}>
|
<Typography variant="body1" gutterBottom sx={{ p: 2 }}>
|
||||||
For participants, await the start of the stage 1 chain, which will be
|
For app publishers, await the start of the stage 1 chain, which will be
|
||||||
announced in various social media channels. In the meantime,
|
announced in various social media channels. In the meantime,
|
||||||
familiarize yourself with the{" "}
|
familiarize yourself with the{" "}
|
||||||
<a
|
<a
|
||||||
@ -163,7 +163,7 @@ const OnboardingSuccess = () => {
|
|||||||
<br />
|
<br />
|
||||||
For validators, ensure your service provider is running and ready to
|
For validators, ensure your service provider is running and ready to
|
||||||
deploy webapps. Await publication of the laconicd version, genesis
|
deploy webapps. Await publication of the laconicd version, genesis
|
||||||
file, and peers to the LORO testnet repo, then follow{" "}
|
file, and peer info to the LORO testnet repo, then follow{" "}
|
||||||
<a
|
<a
|
||||||
href="https://git.vdb.to/cerc-io/testnet-laconicd-stack/src/branch/main/testnet-onboarding-validator.md#join-as-a-validator-on-stage1"
|
href="https://git.vdb.to/cerc-io/testnet-laconicd-stack/src/branch/main/testnet-onboarding-validator.md#join-as-a-validator-on-stage1"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
@ -171,7 +171,7 @@ const OnboardingSuccess = () => {
|
|||||||
>
|
>
|
||||||
these instructions
|
these instructions
|
||||||
</a>{" "}
|
</a>{" "}
|
||||||
for joining stage 1 as a validator.
|
for joining stage 1 as a validator/service provider.
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
</>
|
</>
|
||||||
|
Loading…
Reference in New Issue
Block a user