Skip to content

Commit a669ce0

Browse files
committed
fix lint
1 parent 5219db7 commit a669ce0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

website/src/supportedNetworks/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { NetworksRegistry, type Network } from '@pinax/graph-networks-registry'
1+
import { type Network,NetworksRegistry } from '@pinax/graph-networks-registry'
22

33
// Networks that should use the "mono" icon variant (TODO: add this feature to web3icons?)
44
export const MONO_ICON_NETWORKS = [
@@ -46,7 +46,7 @@ export const getSubgraphsSupportLevel = (network: Network): 'none' | 'basic' | '
4646
const hasSubgraphs = Boolean(network.services.subgraphs?.length || network.services.sps?.length)
4747

4848
if (!hasSubgraphs) return 'none'
49-
if (network.issuanceRewards === true) return 'full'
49+
if (network.issuanceRewards) return 'full'
5050
return 'basic'
5151
}
5252

0 commit comments

Comments
 (0)