Skip to content

Commit

Permalink
Merge pull request DimensionDev#296 from austintgriffith/wallet-fix
Browse files Browse the repository at this point in the history
fix wallet.jsx
  • Loading branch information
austintgriffith committed Aug 2, 2021
2 parents c2abde8 + edfb91a commit dc648ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-app/src/components/Wallet.jsx
Expand Up @@ -59,7 +59,7 @@ export default function Wallet(props) {
const [toAddress, setToAddress] = useState();
const [pk, setPK] = useState();

const providerSend = props.provider ? (
const providerSend = props.signer ? (
<Tooltip title="Wallet">
<WalletOutlined
onClick={() => {
Expand Down Expand Up @@ -320,7 +320,7 @@ export default function Wallet(props) {
disabled={!amount || !toAddress || qr}
loading={false}
onClick={() => {
const tx = Transactor(props.provider);
const tx = Transactor(props.signer);

let value;
try {
Expand Down

0 comments on commit dc648ed

Please sign in to comment.