@@ -581,12 +581,12 @@ const SmartDataTr = ({ network, metadata, showExtraDetails, batchedCategoryData
581581 )
582582}
583583
584- export const StreamsNetworkAddressesTable = ( {
584+ export const StreamsNetworkAddressesTable = ( {
585585 allowExpansion = false ,
586- defaultExpanded = false
587- } : {
588- allowExpansion ?: boolean ;
589- defaultExpanded ?: boolean ;
586+ defaultExpanded = false ,
587+ } : {
588+ allowExpansion ?: boolean
589+ defaultExpanded ?: boolean
590590} = { } ) => {
591591 const [ searchValue , setSearchValue ] = useState ( "" )
592592 const [ isExpanded , setIsExpanded ] = useState ( defaultExpanded )
@@ -612,13 +612,13 @@ export const StreamsNetworkAddressesTable = ({
612612 return (
613613 < div className = { tableStyles . compactNetworksTable } >
614614 { allowExpansion && (
615- < div
615+ < div
616616 className = { tableStyles . expandableHeader }
617617 onClick = { ( ) => setIsExpanded ( ! isExpanded ) }
618618 role = "button"
619619 tabIndex = { 0 }
620620 onKeyDown = { ( e ) => {
621- if ( e . key === ' Enter' || e . key === ' ' ) {
621+ if ( e . key === " Enter" || e . key === " " ) {
622622 e . preventDefault ( )
623623 setIsExpanded ( ! isExpanded )
624624 }
@@ -635,7 +635,7 @@ export const StreamsNetworkAddressesTable = ({
635635 < div className = { clsx ( tableStyles . expandableArrow , isExpanded && tableStyles . expandableArrowExpanded ) } />
636636 </ div >
637637 ) }
638-
638+
639639 { ( ! allowExpansion || isExpanded ) && (
640640 < div >
641641 < div className = { feedList . filterDropdown_search } style = { { padding : "0.5rem" } } >
@@ -672,7 +672,9 @@ export const StreamsNetworkAddressesTable = ({
672672 ( ! normalizedSearch ||
673673 match ( network . network ) ||
674674 match ( network . mainnet . label ) ||
675- match ( network . isSolana ? network . mainnet . verifierProgramId : network . mainnet . verifierProxy ) ) && (
675+ match (
676+ network . isSolana ? network . mainnet . verifierProgramId : network . mainnet . verifierProxy
677+ ) ) && (
676678 < tr
677679 key = { `${ network . network } -mainnet` }
678680 className = { index > 0 ? tableStyles . firstNetworkRow : undefined }
@@ -722,10 +724,14 @@ export const StreamsNetworkAddressesTable = ({
722724 ( ! normalizedSearch ||
723725 match ( network . network ) ||
724726 match ( network . testnet . label ) ||
725- match ( network . isSolana ? network . testnet . verifierProgramId : network . testnet . verifierProxy ) ) && (
727+ match (
728+ network . isSolana ? network . testnet . verifierProgramId : network . testnet . verifierProxy
729+ ) ) && (
726730 < tr
727731 key = { `${ network . network } -testnet` }
728- className = { ! network . mainnet && index > 0 ? tableStyles . firstNetworkRow : tableStyles . testnetRow }
732+ className = {
733+ ! network . mainnet && index > 0 ? tableStyles . firstNetworkRow : tableStyles . testnetRow
734+ }
729735 >
730736 < td className = { tableStyles . networkColumn } >
731737 { ! network . mainnet && (
0 commit comments