Skip to content

Commit

Permalink
fix: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Standrik authored and Anton Standrik committed Nov 19, 2024
1 parent dc2946d commit ebeb462
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/NavigationTree/NavigationTreeNode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export interface NavigationTreeNodeProps {
children?: React.ReactNode;
onActivate?: (path: string) => void;
getActions?: NavigationTreeProps['getActions'];
onActionsOpenToggle?: NavigationTreeProps['onOpenToggle'];
onActionsOpenToggle?: NavigationTreeProps['onActionsOpenToggle'];
renderAdditionalNodeElements?: NavigationTreeProps['renderAdditionalNodeElements'];
cache?: boolean;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavigationTree/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export type NavigationTreeNodePartialState = Omit<
export interface NavigationTreeProps<D = any> {

Check warning on line 53 in src/components/NavigationTree/types.ts

View workflow job for this annotation

GitHub Actions / Verify Files

Unexpected any. Specify a different type
rootState: NavigationTreeNodePartialState;
fetchPath: (path: string) => Promise<NavigationTreeDataItem[]>;
onOpenToggle?: (args: {
onActionsOpenToggle?: (args: {
path: string;
type: NavigationTreeNodeType;
isOpen: boolean;
Expand Down

0 comments on commit ebeb462

Please sign in to comment.