various edits

This commit is contained in:
Justin Domingue 2021-07-01 15:13:36 -07:00
parent 72877fb0b6
commit 458a7d90a0
2 changed files with 1 additions and 2 deletions

@ -164,7 +164,7 @@ export default function FeeSelector({
<Loader size="20px" />
) : (
<ButtonGray onClick={() => setShowOptions(!showOptions)} width="auto" padding="4px" borderRadius="6px">
{showOptions ? <Trans>Hide</Trans> : <Trans>Explore</Trans>}
{showOptions ? <Trans>Hide</Trans> : <Trans>Edit</Trans>}
</ButtonGray>
)}
</RowBetween>

@ -12,7 +12,6 @@ function useQueryCacheInvalidator() {
const dispatch = useAppDispatch()
useEffect(() => {
console.log('chanid changed')
dispatch(api.util.resetApiState())
}, [chainId, dispatch])
}