Skip to content
This repository has been archived by the owner on Nov 24, 2022. It is now read-only.

Commit

Permalink
fix: updated the utilities bug (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dudleyneedham authored Mar 9, 2021
1 parent bcaede7 commit 409a7ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DevTools/DevTools.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class DevTools extends React.Component<Props> {
return (
<section className="DevTools">
<h2>Dev Tools</h2>
{selectedIdentity && balance.gt(minBalanceForBootstrap) ? (
{selectedIdentity && balance && balance.gt(minBalanceForBootstrap) ? (
<div>
<div>
<h4>Auto Bootstrap</h4>
Expand Down

0 comments on commit 409a7ea

Please sign in to comment.