From 458a7d90a0b58aa55bf2e297c4f264876b7c266d Mon Sep 17 00:00:00 2001 From: Justin Domingue Date: Thu, 1 Jul 2021 15:13:36 -0700 Subject: [PATCH] various edits --- src/components/FeeSelector/index.tsx | 2 +- src/state/application/updater.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/FeeSelector/index.tsx b/src/components/FeeSelector/index.tsx index fdae5fff55..4a6a7e6455 100644 --- a/src/components/FeeSelector/index.tsx +++ b/src/components/FeeSelector/index.tsx @@ -164,7 +164,7 @@ export default function FeeSelector({ ) : ( setShowOptions(!showOptions)} width="auto" padding="4px" borderRadius="6px"> - {showOptions ? Hide : Explore} + {showOptions ? Hide : Edit} )} diff --git a/src/state/application/updater.ts b/src/state/application/updater.ts index 16dac5be0f..c9126e5739 100644 --- a/src/state/application/updater.ts +++ b/src/state/application/updater.ts @@ -12,7 +12,6 @@ function useQueryCacheInvalidator() { const dispatch = useAppDispatch() useEffect(() => { - console.log('chanid changed') dispatch(api.util.resetApiState()) }, [chainId, dispatch]) }