From 0eb8e33e450a9774400af9dc250de3f772bf00d7 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Thu, 3 Aug 2023 12:26:05 -0230 Subject: [PATCH] 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. --- app/scripts/lib/ppom/ppom-middleware.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/lib/ppom/ppom-middleware.ts b/app/scripts/lib/ppom/ppom-middleware.ts index d28304367..09368a2c5 100644 --- a/app/scripts/lib/ppom/ppom-middleware.ts +++ b/app/scripts/lib/ppom/ppom-middleware.ts @@ -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;