From ca617c43a5e8a183ee8e614b7b8e33a74f5fd7c7 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Thu, 24 Aug 2023 09:51:46 +0300 Subject: [PATCH] fix: remove not used components --- .../ValidatorOnboarding.tsx | 109 +++++++++--------- 1 file changed, 53 insertions(+), 56 deletions(-) diff --git a/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx b/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx index be8a5473..735d5625 100644 --- a/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx +++ b/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx @@ -3,64 +3,61 @@ import { Shadow, Text } from '@status-im/components' import FormStepper from './Stepper' import PageWrapperGradient from '../../components/PageWrappers/PageWrapperGradient' -Text -function ValidatorOnboarding() { +const ValidatorOnboarding = () => { return ( - <> - - - - - Create Nimbus Validator - - - Earn Rewards for securing the Ethereum Network - - - - - - - - Overview - - - - Becoming a validator is a big responsibility with important preparation steps. Only - start the deposit process when youre ready." - - - By running a validator, you'll be responsible for securing the network and receive - continuous payouts for actions that help the network reach consensus. - - - Since the successful transition to proof-of-stake via The Merge, Ethereum is fully - secured by proof-of-stake validators. By running a validator, you'll be helping to - secure the Ethereum network. - - -
-
- background -
-
-
+ + + + + Create Nimbus Validator + + + Earn Rewards for securing the Ethereum Network + + - - + + + + + Overview + + + + Becoming a validator is a big responsibility with important preparation steps. Only + start the deposit process when youre ready." + + + By running a validator, you'll be responsible for securing the network and receive + continuous payouts for actions that help the network reach consensus. + + + Since the successful transition to proof-of-stake via The Merge, Ethereum is fully + secured by proof-of-stake validators. By running a validator, you'll be helping to + secure the Ethereum network. + + +
+
+ background +
+
+
+
+
) }