Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 24a8d37

Browse files
committed
fix eslint import issues
1 parent c16944f commit 24a8d37

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

token/js/src/actions/amountToUiAmount.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { Connection, Signer, TransactionError } from '@solana/web3.js';
22
import { PublicKey, Transaction } from '@solana/web3.js';
33
import { TOKEN_2022_PROGRAM_ID, TOKEN_PROGRAM_ID } from '../constants.js';
44
import { createAmountToUiAmountInstruction } from '../instructions/amountToUiAmount.js';
5-
import { getMint, unpackMint } from '../state/mint.js';
5+
import { unpackMint } from '../state/mint.js';
66
import { getInterestBearingMintConfigState } from '../extensions/interestBearingMint/state.js';
77

88
/**

token/js/test/unit/interestBearing.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { expect } from 'chai';
2-
import { Connection, PublicKey } from '@solana/web3.js';
2+
import type { Connection } from '@solana/web3.js';
3+
import { PublicKey } from '@solana/web3.js';
34
import {
45
amountToUiAmountForMintWithoutSimulation,
56
uiAmountToAmountForMintWithoutSimulation,

0 commit comments

Comments
 (0)