diff --git a/src/pages/CreateLocalNodePage/CreateLocalNodePage.tsx b/src/pages/CreateLocalNodePage/CreateLocalNodePage.tsx index f4774dd0..b7818708 100644 --- a/src/pages/CreateLocalNodePage/CreateLocalNodePage.tsx +++ b/src/pages/CreateLocalNodePage/CreateLocalNodePage.tsx @@ -13,6 +13,7 @@ import ReactionIcon from '../../components/Icons/ReactionIcon' const CreateLocalNodePage = () => { const [autoConnectChecked, setAutoConnectChecked] = useState(false) + const [chosenColor, setChosenColor] = useState('#FFFFFF') return ( @@ -64,6 +65,8 @@ const CreateLocalNodePage = () => { '#C78F67', '#CB6256', ]} + color={chosenColor} + onChange={color => setChosenColor(color.hex)} />