Shun Miyazawa 4 lat temu
rodzic
commit
03b18b4037

+ 3 - 1
packages/app/src/components/Sidebar/PageTree/ItemsTree.tsx

@@ -75,7 +75,9 @@ const renderByInitialNode = (initialNode: ItemNode, isEnableActions: boolean, ta
  * ItemsTree
  */
 const ItemsTree: FC<ItemsTreeProps> = (props: ItemsTreeProps) => {
-  const { targetPath, targetPathOrId, targetAndAncestorsData, pageToDelete, isEnableActions } = props;
+  const {
+    targetPath, targetPathOrId, targetAndAncestorsData, pageToDelete, isEnableActions
+  } = props;
 
   const { data: ancestorsChildrenData, error: error1 } = useSWRxPageAncestorsChildren(targetPath);
   const { data: rootPageData, error: error2 } = useSWRxRootPage();