Skip to content

Commit

Permalink
super type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vitPinchuk committed Jan 21, 2025
1 parent 59f89df commit 2cfb6ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/GroupsEditor/GroupsEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { getStyles } from './GroupsEditor.styles';
/**
* Properties
*/
interface Props extends StandardEditorProps<LevelsGroup[], null, PanelOptions> {}
type Props = StandardEditorProps<LevelsGroup[], null, PanelOptions>;

/**
* Get Item Style
Expand Down
2 changes: 1 addition & 1 deletion src/components/StatusStyleEditor/StatusStyleEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { getStyles } from './StatusStyleEditor.styles';
/**
* Properties
*/
interface Props extends StandardEditorProps<StatusStyleOptions, null, PanelOptions> {}
type Props = StandardEditorProps<StatusStyleOptions, null, PanelOptions>;

/**
* Status Style Editor
Expand Down
2 changes: 1 addition & 1 deletion src/components/VariablePanel/VariablePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { TableView } from '../TableView';
/**
* Properties
*/
interface Props extends PanelProps<PanelOptions> {}
type Props = PanelProps<PanelOptions>;

/**
* Panel
Expand Down

0 comments on commit 2cfb6ee

Please sign in to comment.