Skip to content

Commit 02bb71d

Browse files
committed
restore logic
1 parent c6e3f6d commit 02bb71d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/features/feeds/components/Tables.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -967,10 +967,8 @@ export const MainnetTable = ({
967967
const filteredMetadata = network.metadata
968968
.sort((a, b) => (a.name < b.name ? -1 : 1))
969969
.filter((metadata) => {
970-
if (showOnlySVR) {
971-
if (!metadata.secondaryProxyAddress) {
972-
return false
973-
}
970+
if (showOnlySVR && !metadata.secondaryProxyAddress) {
971+
return false
974972
}
975973

976974
if (isDeprecating) return !!metadata.docs.shutdownDate

0 commit comments

Comments
 (0)