瀏覽代碼

Removed console.log

Taichi Masuyama 4 年之前
父節點
當前提交
3eb9049238
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/app/src/components/Sidebar/PageTree/ItemsTree.tsx

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

@@ -121,7 +121,7 @@ const ItemsTree: FC<ItemsTreeProps> = (props: ItemsTreeProps) => {
   const onDeletedHandler: OnDeletedFunction = (pathOrPathsToDelete, isRecursively, isCompletely) => {
     if (typeof pathOrPathsToDelete === 'string') {
       const path = pathOrPathsToDelete;
-      console.log(pathOrPathsToDelete, isRecursively, isCompletely);
+
       if (isRecursively) {
         if (isCompletely) {
           toastSuccess(t('deleted_single_page_recursively_completely', { path }));