We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5219db7 commit a669ce0Copy full SHA for a669ce0
website/src/supportedNetworks/utils.ts
@@ -1,4 +1,4 @@
1
-import { NetworksRegistry, type Network } from '@pinax/graph-networks-registry'
+import { type Network,NetworksRegistry } from '@pinax/graph-networks-registry'
2
3
// Networks that should use the "mono" icon variant (TODO: add this feature to web3icons?)
4
export const MONO_ICON_NETWORKS = [
@@ -46,7 +46,7 @@ export const getSubgraphsSupportLevel = (network: Network): 'none' | 'basic' | '
46
const hasSubgraphs = Boolean(network.services.subgraphs?.length || network.services.sps?.length)
47
48
if (!hasSubgraphs) return 'none'
49
- if (network.issuanceRewards === true) return 'full'
+ if (network.issuanceRewards) return 'full'
50
return 'basic'
51
}
52
0 commit comments