Skip to content

Commit a71af0f

Browse files
authored
Merge pull request #1267 from ethereum/fix-dharma
Fix dharma
2 parents f99abea + f68bcc4 commit a71af0f

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/components/EthExchanges.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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,

src/pages/build.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React from "react"
22
import { graphql } from "gatsby"
3-
import Img from "gatsby-image"
43
import styled from "styled-components"
54
import { useIntl } from "gatsby-plugin-intl"
65
import { Twemoji } from "react-emoji-render"
@@ -198,7 +197,6 @@ const templates = [
198197
const BuildPage = ({ data }) => {
199198
const intl = useIntl()
200199

201-
// TODO add dark images
202200
const resources = [
203201
{
204202
title: "CryptoZombies",

0 commit comments

Comments
 (0)