Skip to content

Commit

Permalink
fix appearance of new transaction button
Browse files Browse the repository at this point in the history
  • Loading branch information
Lykhoyda committed Aug 15, 2023
1 parent 5005c73 commit 2b44328
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/ui/src/pages/Home/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ const Home = ({ className }: HomeProps) => {
xs={12}
md={6}
>
{<MultisigView />}
<MultisigView />
</Grid>
{multiProxyList.length > 0 && (
<Grid
Expand Down
5 changes: 3 additions & 2 deletions packages/ui/src/pages/Home/PureProxyHeaderView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { useNavigate } from 'react-router-dom'

const PureProxyHeaderView = () => {
const navigate = useNavigate()
const { selectedMultiProxy, selectedHasProxy } = useMultiProxy()
const { selectedMultiProxy, selectedHasProxy, selectedIsWatched } = useMultiProxy()
const { balanceFormatted: pureProxyBalance } = useGetBalance({
address: selectedMultiProxy?.proxy || ''
})
Expand Down Expand Up @@ -39,7 +39,7 @@ const PureProxyHeaderView = () => {
<BalanceAmountStyled>{pureProxyBalance}</BalanceAmountStyled>
</BalanceStyled>
<BoxStyled>
<MultisigActionMenu />
<MultisigActionMenu withSendButton={!selectedIsWatched} />
</BoxStyled>
</PureHeaderStyled>
</PureProxyWrapper>
Expand Down Expand Up @@ -142,6 +142,7 @@ const BalanceStyled = styled('div')`

const BalanceHeaderStyled = styled('div')`
color: ${({ theme }) => theme.custom.gray[700]};
margin-right: 0.25rem;
`

const BalanceAmountStyled = styled('div')`
Expand Down

0 comments on commit 2b44328

Please sign in to comment.