Skip to content

Commit e0425bc

Browse files
committed
fix: typecheck
1 parent 6966823 commit e0425bc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/hooks/useLaneTokens.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
import { useMemo } from "react"
2-
import { Environment, LaneFilter, Version } from "~/config/data/ccip/types"
3-
import { getTokenData } from "~/config/data/ccip/data"
4-
import { getTokenIconUrl } from "~/features/utils"
5-
import { realtimeDataService } from "~/lib/ccip/services/realtime-data-instance"
2+
import { Environment, LaneFilter, Version } from "~/config/data/ccip/types.ts"
3+
import { getTokenData } from "~/config/data/ccip/data.ts"
4+
import { getTokenIconUrl } from "~/features/utils/index.ts"
5+
import { realtimeDataService } from "~/lib/ccip/services/realtime-data-instance.ts"
66

77
export interface ProcessedToken {
88
id: string
99
data: ReturnType<typeof getTokenData>
1010
logo: string
1111
rateLimits: {
12-
standard?: { capacity: string; rate: string; isEnabled: boolean }
13-
ftf?: { capacity: string; rate: string; isEnabled: boolean }
12+
standard: { capacity: string; rate: string; isEnabled: boolean } | null
13+
ftf: { capacity: string; rate: string; isEnabled: boolean } | null
1414
}
1515
isPaused: boolean
1616
}

0 commit comments

Comments
 (0)