Skip to content

Commit

Permalink
fix: fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiorigam committed Nov 22, 2024
1 parent e75f5ec commit c233309
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export type TransactionData = {

type UseSendAbstractedTransactionProps = {
onTxConfirmed?: () => void | Promise<void>;
showErrorToast?: boolean;
// showErrorToast?: boolean;
};

/**
Expand Down Expand Up @@ -87,7 +87,7 @@ export type UseSendTransactionReturnValue = {
*/
export const useSendAccountAbstractedTransaction = ({
onTxConfirmed,
showErrorToast = true,
// showErrorToast = true,
}: UseSendAbstractedTransactionProps): UseSendTransactionReturnValue => {
const { thor } = useConnex();
const account = useSmartAccount();
Expand Down

0 comments on commit c233309

Please sign in to comment.