Skip to content

Commit 197bd1d

Browse files
committed
Fix typos in comments
1 parent e794f29 commit 197bd1d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/hooks/__tests__/useFetchTvl.test.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,9 @@ describe("Test `useFetchTvl` hook", () => {
214214

215215
expect(multicallRequest).toHaveBeenCalled()
216216

217-
// The `toUsdBalance` and `spyOnFormatUnits` function was called 2x times because it was called
218-
// first on mount for every value and then after fetching on-chain data.
217+
// The `toUsdBalance` and `spyOnFormatUnits` function were called 2x times
218+
// because they were called called first on mount for every value and then
219+
// after fetching on-chain data.
219220
expect(spyOnToUsdBalance).toHaveBeenCalledTimes(
220221
multicallRequestResult.length * 2
221222
)

src/utils/subgraphAPI.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const TBTC_SUBGRAPH_URL =
44
"https://api.thegraph.com/subgraphs/name/suntzu93/threshold-tbtc"
55

66
type TransactionRawResponse = {
7-
// Actually transacion hash where the tbtc tokens were minted.
7+
// Actual transaction hash where the tBTC tokens were minted.
88
id: string
99
timestamp: string
1010
deposits: {

0 commit comments

Comments
 (0)