1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix import that was resulting in a depcheck error (#20383)

An import was introduced in #20125 that was broken. It was importing
from `app/` instead of using a relative import. This was causing the
CI "depcheck" job to fail. The import has been updated to use a
relative path.
This commit is contained in:
Mark Stacey 2023-08-03 12:26:05 -02:30 committed by GitHub
parent 840eb632c6
commit 0eb8e33e45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ import {
BlockaidReason,
BlockaidResultType,
} from '../../../../shared/constants/security-provider';
import PreferencesController from 'app/scripts/controllers/preferences';
import PreferencesController from '../../controllers/preferences';
const { sentry } = global as any;