From 33d7746c2797c1de26ca58a7f7bb31784f42e6b4 Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Thu, 20 May 2021 10:22:13 +0300 Subject: [PATCH] Import SelectProps as a type Signed-off-by: Alex Andreev --- .../components/+namespaces/namespace-select-filter.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/renderer/components/+namespaces/namespace-select-filter.tsx b/src/renderer/components/+namespaces/namespace-select-filter.tsx index c2a0c2a786..737bb1e20e 100644 --- a/src/renderer/components/+namespaces/namespace-select-filter.tsx +++ b/src/renderer/components/+namespaces/namespace-select-filter.tsx @@ -28,10 +28,12 @@ import { components, PlaceholderProps } from "react-select"; import { Icon } from "../icon"; import { FilterIcon } from "../item-object-list/filter-icon"; import { FilterType } from "../item-object-list/page-filters.store"; -import { SelectOption, SelectProps } from "../select"; +import { SelectOption } from "../select"; import { NamespaceSelect } from "./namespace-select"; import { namespaceStore } from "./namespace.store"; +import type { SelectProps } from "../select"; + const Placeholder = observer((props: PlaceholderProps) => { const getPlaceholder = (): React.ReactNode => { const namespaces = namespaceStore.contextNamespaces;