Skip to content

Commit

Permalink
Filter out hushedNorthstar
Browse files Browse the repository at this point in the history
  • Loading branch information
spacesailor24 committed Oct 18, 2024
1 parent 80d5232 commit 44e3cbd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/SupportedChainCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const BlockchainCard = ({ chainName, symbol, chainId, litIdentifier }) => (
export default function SupportedBlockchainsSection({ title, className }) {
const chains = React.useMemo(() => {
return Object.entries(LIT_CHAINS)
.filter(([key]) => key !== 'hushedNorthstar')
.sort(([keyA], [keyB]) =>
keyA.toLowerCase().localeCompare(keyB.toLowerCase())
)
Expand Down

0 comments on commit 44e3cbd

Please sign in to comment.