Skip to content

Commit 8a83ff6

Browse files
committed
lint fix
1 parent 98ea201 commit 8a83ff6

File tree

2 files changed

+184
-182
lines changed

2 files changed

+184
-182
lines changed

src/features/feeds/components/FeedList.tsx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -747,11 +747,12 @@ export const FeedList = ({
747747
// For deprecating streams, show a consolidated table across all networks
748748
if (isDeprecating) {
749749
const allDeprecatingStreams: any[] = []
750-
750+
751751
// Check both chainMetadata and initialCache for deprecating streams
752-
const networksToCheck = chainMetadata.processedData?.networks ||
752+
const networksToCheck =
753+
chainMetadata.processedData?.networks ||
753754
(initialCache && initialCache.deprecated ? (initialCache.deprecated as any).networks : [])
754-
755+
755756
networksToCheck.forEach((network: any) => {
756757
network.metadata?.forEach((item: any) => {
757758
// Only include items that are actual streams (have verifier contract type and feedId)
@@ -769,7 +770,7 @@ export const FeedList = ({
769770
<>
770771
{chainMetadata.loading && !chainMetadata.processedData && !initialCache && <p>Loading...</p>}
771772
{chainMetadata.error && <p>There was an error loading the streams...</p>}
772-
773+
773774
{allDeprecatingStreams.length > 0 ? (
774775
<SectionWrapper title="Deprecating Streams" depth={2}>
775776
<div className={feedList.tableWrapper}>
@@ -784,9 +785,7 @@ export const FeedList = ({
784785
</div>
785786
</SectionWrapper>
786787
) : (
787-
!chainMetadata.loading && (
788-
<p>No deprecating streams found at this time.</p>
789-
)
788+
!chainMetadata.loading && <p>No deprecating streams found at this time.</p>
790789
)}
791790
</>
792791
)

0 commit comments

Comments
 (0)