diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json
index 1c21f2a93..f4d28ac59 100644
--- a/app/_locales/en/messages.json
+++ b/app/_locales/en/messages.json
@@ -907,9 +907,6 @@
"gasEstimatesUnavailableWarning": {
"message": "Our low, medium and high estimates are not available."
},
- "gasFeeEstimate": {
- "message": "Estimate"
- },
"gasLimit": {
"message": "Gas Limit"
},
diff --git a/ui/components/app/advanced-gas-controls/advanced-gas-controls.component.js b/ui/components/app/advanced-gas-controls/advanced-gas-controls.component.js
index 5cc473f1b..e46560131 100644
--- a/ui/components/app/advanced-gas-controls/advanced-gas-controls.component.js
+++ b/ui/components/app/advanced-gas-controls/advanced-gas-controls.component.js
@@ -3,12 +3,6 @@ import PropTypes from 'prop-types';
import { useSelector } from 'react-redux';
import { I18nContext } from '../../../contexts/i18n';
-import Typography from '../../ui/typography/typography';
-import {
- FONT_WEIGHT,
- TYPOGRAPHY,
- COLORS,
-} from '../../../helpers/constants/design-system';
import FormField from '../../ui/form-field';
import {
GAS_ESTIMATE_TYPES,
@@ -135,27 +129,6 @@ export default function AdvancedGasControls({
tooltipText={t('editGasPriceTooltip')}
value={gasPrice}
numeric
- titleDetail={
- suggestedValues.gasPrice && (
- <>
-
- {t('gasFeeEstimate')}:
- {' '}
-
- {suggestedValues.gasPrice}
-
- >
- )
- }
error={
gasErrors?.gasPrice
? getGasFormErrorText(gasErrors.gasPrice, t)
diff --git a/ui/components/app/advanced-gas-controls/index.scss b/ui/components/app/advanced-gas-controls/index.scss
index 969c8ca3f..1c149a225 100644
--- a/ui/components/app/advanced-gas-controls/index.scss
+++ b/ui/components/app/advanced-gas-controls/index.scss
@@ -3,19 +3,10 @@
margin-bottom: 20px;
}
- &__row-heading {
- display: flex;
- }
-
.info-tooltip {
display: inline-block;
}
- &__row-heading-detail {
- flex-grow: 1;
- align-self: center;
- }
-
.form-field__row--error .form-field__heading-title h6 {
color: $error-1;