File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -334,6 +334,7 @@ const EthExchanges = () => {
334334 url : "https://www.dharma.io/ " ,
335335 platform : "Mobile" ,
336336 image : data . dharma ,
337+ isUsaOnly : true ,
337338 } ,
338339 } ,
339340 } ,
@@ -457,6 +458,9 @@ const EthExchanges = () => {
457458 if ( exceptions . length > 0 ) {
458459 description = `Except ${ exceptions . join ( ", " ) } `
459460 }
461+ // Filter out wallets that only service USA
462+ } else if ( walletObject . isUsaOnly ) {
463+ return result
460464 }
461465 return result . concat ( {
462466 title : currentWallet ,
Original file line number Diff line number Diff line change 11import React from "react"
22import { graphql } from "gatsby"
3- import Img from "gatsby-image"
43import styled from "styled-components"
54import { useIntl } from "gatsby-plugin-intl"
65import { Twemoji } from "react-emoji-render"
@@ -198,7 +197,6 @@ const templates = [
198197const BuildPage = ( { data } ) => {
199198 const intl = useIntl ( )
200199
201- // TODO add dark images
202200 const resources = [
203201 {
204202 title : "CryptoZombies" ,
You can’t perform that action at this time.
0 commit comments