Fix firefox popup
This commit is contained in:
parent
efbb932222
commit
324b98d6ed
|
@ -1,4 +1,4 @@
|
||||||
import React, { useEffect, useMemo, useRef, useState } from 'react';
|
import React, { useEffect, useMemo, useState } from 'react';
|
||||||
import bs58 from 'bs58';
|
import bs58 from 'bs58';
|
||||||
import { Divider, Typography } from '@material-ui/core';
|
import { Divider, Typography } from '@material-ui/core';
|
||||||
import CardContent from '@material-ui/core/CardContent';
|
import CardContent from '@material-ui/core/CardContent';
|
||||||
|
@ -120,6 +120,7 @@ export default function SignTransactionFormContent({
|
||||||
messages,
|
messages,
|
||||||
onApprove,
|
onApprove,
|
||||||
autoApprove,
|
autoApprove,
|
||||||
|
buttonRef,
|
||||||
}) {
|
}) {
|
||||||
const explorerUrlSuffix = useSolanaExplorerUrlSuffix();
|
const explorerUrlSuffix = useSolanaExplorerUrlSuffix();
|
||||||
const connection = useConnection();
|
const connection = useConnection();
|
||||||
|
@ -130,7 +131,6 @@ export default function SignTransactionFormContent({
|
||||||
// An array of arrays, where each element is the set of instructions for a
|
// An array of arrays, where each element is the set of instructions for a
|
||||||
// single transaction.
|
// single transaction.
|
||||||
const [txInstructions, setTxInstructions] = useState(null);
|
const [txInstructions, setTxInstructions] = useState(null);
|
||||||
const buttonRef = useRef();
|
|
||||||
|
|
||||||
const isMultiTx = messages.length > 1;
|
const isMultiTx = messages.length > 1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue