From 617db9c64f69faa65db310b8b296c22726a96646 Mon Sep 17 00:00:00 2001 From: Armani Ferrante Date: Tue, 18 Jan 2022 12:50:14 -0500 Subject: [PATCH] Remove debug buttons --- src/pages/WalletPage.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/pages/WalletPage.js b/src/pages/WalletPage.js index 3ef2d9b..ded8c15 100644 --- a/src/pages/WalletPage.js +++ b/src/pages/WalletPage.js @@ -2,8 +2,6 @@ import React from 'react'; import Container from '@material-ui/core/Container'; import BalancesList from '../components/BalancesList'; import Grid from '@material-ui/core/Grid'; -import { useIsProdNetwork } from '../utils/connection'; -import DebugButtons from '../components/DebugButtons'; import { makeStyles } from '@material-ui/core'; import { useIsExtensionWidth } from '../utils/utils'; @@ -25,7 +23,6 @@ const useStyles = makeStyles((theme) => ({ export default function WalletPage() { const classes = useStyles(); - const isProdNetwork = useIsProdNetwork(); const isExtensionWidth = useIsExtensionWidth(); return ( @@ -33,11 +30,6 @@ export default function WalletPage() { - {isProdNetwork ? null : ( - - - - )} );