From 250b59517c5165e3009951d06411fad8c355ea26 Mon Sep 17 00:00:00 2001 From: Priya Date: Tue, 28 Jan 2025 14:30:47 +0100 Subject: [PATCH] =?UTF-8?q?chore:=20Remove=20useExternalServices=20check?= =?UTF-8?q?=20for=20isDecodeSignatureRequestE=E2=80=A6=20(#29939)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …nabled ## **Description** [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/MetaMask/metamask-extension/pull/29939?quickstart=1) ## **Related issues** Fixes: [#29847](https://github.com/MetaMask/metamask-extension/issues/29847) ## **Manual testing steps** 1. Go to this page... 2. 3. ## **Screenshots/Recordings** ### **Before** ### **After** ## **Pre-merge author checklist** - [ ] I've followed [MetaMask Contributor Docs](https://github.com/MetaMask/contributor-docs) and [MetaMask Extension Coding Standards](https://github.com/MetaMask/metamask-extension/blob/main/.github/guidelines/CODING_GUIDELINES.md). - [ ] I've completed the PR template to the best of my ability - [ ] I’ve included tests if applicable - [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format if applicable - [ ] I’ve applied the right labels on the PR (see [labeling guidelines](https://github.com/MetaMask/metamask-extension/blob/main/.github/guidelines/LABELING_GUIDELINES.md)). Not required for external contributors. ## **Pre-merge reviewer checklist** - [ ] I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed). - [ ] I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots. --- app/scripts/metamask-controller.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app/scripts/metamask-controller.js b/app/scripts/metamask-controller.js index 95bdd11206cb..ba5dc483ebf4 100644 --- a/app/scripts/metamask-controller.js +++ b/app/scripts/metamask-controller.js @@ -1990,7 +1990,6 @@ export default class MetamaskController extends EventEmitter { trace, decodingApiUrl: process.env.DECODING_API_URL, isDecodeSignatureRequestEnabled: () => - this.preferencesController.state.useExternalServices === true && this.preferencesController.state.useTransactionSimulations, });