Skip to content

Commit 4324da8

Browse files
committed
Fix typo in component name
`TBTCBrdigeStats` -> `TBTCBridgeStats`
1 parent c0b941f commit 4324da8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/pages/Overview/Network/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import TotalValueLocked from "./TotalValueLocked"
44
import StakingOverview from "./StakingOverview"
55
import { useFetchTvl } from "../../../hooks/useFetchTvl"
66
import { PageComponent } from "../../../types"
7-
import { TBTCBrdigeStats } from "./tBTCBridgeStats"
7+
import { TBTCBridgeStats } from "./tBTCBridgeStats"
88
import { useFetchRecentDeposits } from "../../../hooks/tbtc"
99

1010
const Network: PageComponent = () => {
@@ -17,7 +17,7 @@ const Network: PageComponent = () => {
1717

1818
return (
1919
<SimpleGrid columns={{ base: 1, xl: 2 }} spacing={4}>
20-
<TBTCBrdigeStats
20+
<TBTCBridgeStats
2121
tvl={tvlInTokenUnits.tBTC}
2222
tvlInUSD={tvlInUSD.tBTC}
2323
deposits={deposits}

src/pages/Overview/Network/tBTCBridgeStats.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import {
77
TVLProps,
88
} from "../../../components/tBTC"
99

10-
type TBTCBrdigeStatsProps = ProtocolHistoryProps & TVLProps
10+
type TBTCBridgeStatsProps = ProtocolHistoryProps & TVLProps
1111

12-
export const TBTCBrdigeStats: FC<TBTCBrdigeStatsProps> = ({
12+
export const TBTCBridgeStats: FC<TBTCBridgeStatsProps> = ({
1313
tvl,
1414
tvlInUSD,
1515
deposits,

0 commit comments

Comments
 (0)