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 c6e3f6d commit 02bb71dCopy full SHA for 02bb71d
src/features/feeds/components/Tables.tsx
@@ -967,10 +967,8 @@ export const MainnetTable = ({
967
const filteredMetadata = network.metadata
968
.sort((a, b) => (a.name < b.name ? -1 : 1))
969
.filter((metadata) => {
970
- if (showOnlySVR) {
971
- if (!metadata.secondaryProxyAddress) {
972
- return false
973
- }
+ if (showOnlySVR && !metadata.secondaryProxyAddress) {
+ return false
974
}
975
976
if (isDeprecating) return !!metadata.docs.shutdownDate
0 commit comments