Skip to content

Commit

Permalink
typing
Browse files Browse the repository at this point in the history
  • Loading branch information
hathbanger committed Nov 15, 2024
1 parent 652e539 commit 8faff37
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/demo.lasereyes.build/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,9 @@ const App = ({ setNetwork }: { setNetwork: (n: NetworkType) => void }) => {
<LaserEyesLogo
className={'m-4'}
width={48}
onClick={address ? () => null : () => pickRandomColor()}
color={address ? 'green' : selectedColor}
color={
address ? ('green' as colorsType) : (selectedColor as colorsType)
}
/>
<div className={'grow'} />
</div>
Expand Down

0 comments on commit 8faff37

Please sign in to comment.