From ddf7a1ad3ea7d181b6c6862487a10f2f083adc9f Mon Sep 17 00:00:00 2001 From: Luiz Bezerra Date: Thu, 24 Oct 2024 15:15:19 +0100 Subject: [PATCH] removed unused export type Signed-off-by: Luiz Bezerra --- packages/suite-base/src/components/PanelSettings/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/suite-base/src/components/PanelSettings/index.tsx b/packages/suite-base/src/components/PanelSettings/index.tsx index de33e67959..ecd9000fef 100644 --- a/packages/suite-base/src/components/PanelSettings/index.tsx +++ b/packages/suite-base/src/components/PanelSettings/index.tsx @@ -54,7 +54,7 @@ const EMPTY_SETTINGS_TREE: SettingsTree = Object.freeze({ nodes: {}, }); -export type PanelSettingsProps = React.PropsWithChildren<{ +type PanelSettingsProps = React.PropsWithChildren<{ disableToolbar?: boolean; selectedPanelIdsForTests?: readonly string[]; }>;