Skip to content

Commit

Permalink
Fix import that was resulting in a depcheck error (#20383)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Gudahtt authored Aug 3, 2023
1 parent 840eb63 commit 0eb8e33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/lib/ppom/ppom-middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 0eb8e33

Please sign in to comment.