From 12cdfcacba0a8380436391ac9ad987f6a4763644 Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Fri, 1 Sep 2023 01:11:20 +0300 Subject: [PATCH] Fix warning --- .../ValidatorSetup/ConsensusSelection.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx b/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx index 25e283a1..33ac7211 100644 --- a/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx +++ b/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx @@ -9,6 +9,11 @@ import { RootState } from '../../../redux/store' const ConsensusSelection = () => { const selectedClient = useSelector((state: RootState) => state.execClient.selectedClient) as + | 'Nethermind' + | 'Besu' + | 'Geth' + | 'Erigon' + | 'Nimbus' const clientIcons = { Nethermind: '/icons/nethermind-circle.png',