copy: fix role names
This commit is contained in:
parent
3fe0576f34
commit
e6fa6aabd7
@ -44,12 +44,12 @@ const SelectRoleCard = ({ handleAccept, handleRoleChange }: { handleAccept: () =
|
||||
<FormControlLabel
|
||||
value={Role.Validator}
|
||||
control={<Radio />}
|
||||
label="Validator"
|
||||
label="Validator / Service Provider"
|
||||
/>
|
||||
<FormControlLabel
|
||||
value={Role.Participant}
|
||||
control={<Radio />}
|
||||
label="Participant"
|
||||
label="App Publisher"
|
||||
/>
|
||||
</RadioGroup>
|
||||
</FormControl>
|
||||
|
@ -55,8 +55,13 @@ const LandingPage = () => {
|
||||
setIsDisabled(false);
|
||||
}}
|
||||
/>
|
||||
<Box m={2} display="flex" justifyContent="center">
|
||||
<Button variant="outlined" color="primary" disabled={isDisabled}>
|
||||
<Box m={2} display="flex" justifyContent="center" gap={2}>
|
||||
<Button
|
||||
variant="outlined"
|
||||
color="primary"
|
||||
sx={{ color: "text.primary" }}
|
||||
disabled={isDisabled}
|
||||
>
|
||||
<a
|
||||
href="/TermsAndConditions.pdf"
|
||||
download
|
||||
|
@ -148,7 +148,7 @@ const OnboardingSuccess = () => {
|
||||
padding={5}
|
||||
>
|
||||
<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,
|
||||
familiarize yourself with the{" "}
|
||||
<a
|
||||
@ -163,7 +163,7 @@ const OnboardingSuccess = () => {
|
||||
<br />
|
||||
For validators, ensure your service provider is running and ready to
|
||||
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
|
||||
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"
|
||||
@ -171,7 +171,7 @@ const OnboardingSuccess = () => {
|
||||
>
|
||||
these instructions
|
||||
</a>{" "}
|
||||
for joining stage 1 as a validator.
|
||||
for joining stage 1 as a validator/service provider.
|
||||
</Typography>
|
||||
</Box>
|
||||
</>
|
||||
|
Loading…
Reference in New Issue
Block a user