From 5baa17ddab6e94e6fe5da3bfdf518f134612b36b Mon Sep 17 00:00:00 2001 From: Matthew Kime Date: Wed, 15 Sep 2021 09:10:56 -0500 Subject: [PATCH] remove deep import (#112188) --- x-pack/plugins/uptime/public/state/reducers/index_pattern.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/uptime/public/state/reducers/index_pattern.ts b/x-pack/plugins/uptime/public/state/reducers/index_pattern.ts index d16860850bd78..c4fae4660168d 100644 --- a/x-pack/plugins/uptime/public/state/reducers/index_pattern.ts +++ b/x-pack/plugins/uptime/public/state/reducers/index_pattern.ts @@ -7,7 +7,7 @@ import { handleActions, Action } from 'redux-actions'; import { getIndexPattern, getIndexPatternSuccess, getIndexPatternFail } from '../actions'; -import type { IndexPattern } from '../../../../../../src/plugins/data/common/index_patterns'; +import type { IndexPattern } from '../../../../../../src/plugins/data/common'; export interface IndexPatternState { index_pattern: IndexPattern | null;