Skip to content

Commit

Permalink
chore: enable v0 tx on solana lab (#2627)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomiir authored Jul 30, 2024
1 parent c2771a7 commit a95731f
Showing 1 changed file with 7 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,6 @@ export function SolanaSignTransactionTest() {
)
}

const supportV0Transactions = walletProvider?.name !== 'WalletConnect'

return (
<Stack direction={['column', 'column', 'row']}>
<Button
Expand All @@ -136,15 +134,13 @@ export function SolanaSignTransactionTest() {
>
Sign Transaction
</Button>
{supportV0Transactions ? (
<Button
data-test-id="sign-transaction-button"
onClick={onSignVersionedTransaction}
isDisabled={loading}
>
Sign Versioned Transaction
</Button>
) : null}
<Button
data-test-id="sign-transaction-button"
onClick={onSignVersionedTransaction}
isDisabled={loading}
>
Sign Versioned Transaction
</Button>
<Spacer />

<Link isExternal href="https://solfaucet.com/">
Expand Down

0 comments on commit a95731f

Please sign in to comment.