From ca4e51ebf04a0a684c8130599a08bb7c09235999 Mon Sep 17 00:00:00 2001 From: Jordan Ribbink <17958158+jribbink@users.noreply.github.com> Date: Thu, 24 Oct 2024 13:49:00 -0700 Subject: [PATCH] Remove unused import (#1987) --- packages/fcl-core/src/transaction/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/fcl-core/src/transaction/index.js b/packages/fcl-core/src/transaction/index.js index bf7eab0d7..34d4530dd 100644 --- a/packages/fcl-core/src/transaction/index.js +++ b/packages/fcl-core/src/transaction/index.js @@ -12,7 +12,7 @@ import { import {send as fclSend, decode, getTransactionStatus} from "@onflow/sdk" import {HTTPRequestError} from "@onflow/transport-http" import {grpc} from "@improbable-eng/grpc-web" -import {TransactionError, parseTransactionErrorCode} from "./transaction-error" +import {TransactionError} from "./transaction-error" const TXID_REGEXP = /^[0-9a-fA-F]{64}$/