Skip to content

Commit b742a4d

Browse files
committed
Fix lint errors
1 parent 56d7b26 commit b742a4d

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,5 @@
3535
},
3636
"resolutions": {
3737
"@babel/core": "7.26.7"
38-
},
39-
"dependencies": {
40-
"framer-motion": "^12.6.3"
4138
}
4239
}

pnpm-lock.yaml

Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/src/components/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export * from './Card'
21
export * from './Callout'
2+
export * from './Card'
33
export * from './CodeBlock'
44
export * from './DocSearch'
55
export * from './Heading'

website/src/supportedNetworks/components/NetworkDetailsPage.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { Subgraph, Substreams, SubstreamsPoweredSubgraph } from '@edgeandnode/gd
44

55
import { Card, TimeIcon } from '@/components'
66
import { useI18n } from '@/i18n'
7+
78
import { isEVMNetwork, type Network } from '../utils'
89

910
type NetworkDetailsPageProps = {

website/src/supportedNetworks/components/NetworkPage.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ import { memo } from 'react'
66
import { ExperimentalCopyButton, ExperimentalDescriptionList, ExperimentalLink, Skeleton } from '@edgeandnode/gds'
77
import { NetworkIcon } from '@edgeandnode/go'
88

9-
import NetworkDetailsPage from './NetworkDetailsPage'
109
import { useI18n } from '@/i18n'
11-
import { getIconVariant, shouldShowSkeleton, type Network } from '../utils'
10+
11+
import { getIconVariant, type Network, shouldShowSkeleton } from '../utils'
12+
13+
import NetworkDetailsPage from './NetworkDetailsPage'
1214

1315
interface NetworkPageProps {
1416
network?: Network

website/src/supportedNetworks/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ import { useCallback, useMemo, useState } from 'react'
55
import { ExperimentalLink } from '@edgeandnode/gds'
66

77
import { Callout } from '@/components'
8-
import { EmptySearchResults, NetworkFilters, NetworksTable } from './components'
98
import { useI18n } from '@/i18n'
9+
10+
import { EmptySearchResults, NetworkFilters, NetworksTable } from './components'
1011
import type { NetworkData, ProcessedNetwork } from './utils'
1112
import { processNetworksData } from './utils'
1213

website/src/supportedNetworks/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export interface NetworkData {
5959
id: string
6060
shortName: string
6161
fullName: string
62-
networkType: string
62+
networkType: NetworkType
6363
caip2Id: string
6464
services: {
6565
subgraphs?: any[]
@@ -72,7 +72,7 @@ export interface ProcessedNetwork {
7272
id: string
7373
shortName: string
7474
fullName: string
75-
networkType: string
75+
networkType: NetworkType
7676
caip2Id: string
7777
subgraphs: boolean
7878
substreams: boolean

0 commit comments

Comments
 (0)