Explorar el Código

Removed console.log

Taichi Masuyama hace 4 años
padre
commit
3eb9049238
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 }));