diff --git a/ui/app/components/app/modals/deposit-ether-modal/deposit-ether-modal.component.js b/ui/app/components/app/modals/deposit-ether-modal/deposit-ether-modal.component.js
index 147a80e86..553f25973 100644
--- a/ui/app/components/app/modals/deposit-ether-modal/deposit-ether-modal.component.js
+++ b/ui/app/components/app/modals/deposit-ether-modal/deposit-ether-modal.component.js
@@ -155,14 +155,15 @@ export default class DepositEtherModal extends Component {
buttonLabel: this.context.t('viewAccount'),
onButtonClick: () => this.goToAccountDetailsModal(),
})}
- {this.renderRow({
- logo: ,
- title: this.context.t('testFaucet'),
- text: this.context.t('getEtherFromFaucet', [networkName]),
- buttonLabel: this.context.t('getEther'),
- onButtonClick: () => toFaucet(chainId),
- hide: !isTestnet,
- })}
+ {networkName &&
+ this.renderRow({
+ logo: ,
+ title: this.context.t('testFaucet'),
+ text: this.context.t('getEtherFromFaucet', [networkName]),
+ buttonLabel: this.context.t('getEther'),
+ onButtonClick: () => toFaucet(chainId),
+ hide: !isTestnet,
+ })}