Skip to content

Commit

Permalink
Remove insufficient funds warning if not authed
Browse files Browse the repository at this point in the history
  • Loading branch information
kristiehuang committed Jan 7, 2022
1 parent 5df15b8 commit 5caa747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/bidpage/BidForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ const BidForm = () => {
/>
</div>

{insufficentFunds ? (
{isAuthed && insufficentFunds ? (
<Text mb="0.5em" fontSize="14px" color="red.500">
Insufficient Funds ~ {balance && balance.toFixed(3)}Ξ
</Text>
Expand Down

0 comments on commit 5caa747

Please sign in to comment.