Skip to content

Commit

Permalink
fix mainGasBalance safe reference
Browse files Browse the repository at this point in the history
bump deps for release
  • Loading branch information
truemiller committed May 15, 2024
1 parent 1cd7964 commit a8c7f99
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 20 deletions.
40 changes: 21 additions & 19 deletions frontend/components/Main/MainGasBalance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,25 +75,27 @@ export const MainGasBalance = () => {
<CardSection justify="space-between" borderTop borderBottom>
<Text>
Gas and trading balance&nbsp;
<Tooltip
title={
<TooltipContent>
Your agent uses this balance to pay for transactions and other
trading activity on-chain.
<br />
{/* TODO: ask link */}
<a
href={'https://gnosisscan.io/address/0x' + wallets[0].safe}
target="_blank"
>
Track activity on blockchain explorer{' '}
<ArrowUpOutlined style={{ rotate: '45deg' }} />
</a>
</TooltipContent>
}
>
<InfoCircleOutlined />
</Tooltip>
{wallets?.[0]?.safe && (
<Tooltip
title={
<TooltipContent>
Your agent uses this balance to pay for transactions and other
trading activity on-chain.
<br />
{/* TODO: ask link */}
<a
href={'https://gnosisscan.io/address/0x' + wallets[0].safe}
target="_blank"
>
Track activity on blockchain explorer{' '}
<ArrowUpOutlined style={{ rotate: '45deg' }} />
</a>
</TooltipContent>
}
>
<InfoCircleOutlined />
</Tooltip>
)}
</Text>

<Text strong>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@
"start": "electron .",
"build": "rm -rf dist/ && electron-builder build"
},
"version": "0.1.0-rc15.9.7.9"
"version": "0.1.0-rc15.9.7.9.1"
}

0 comments on commit a8c7f99

Please sign in to comment.