Przeglądaj źródła

Removed console.log

Taichi Masuyama 4 lat temu
rodzic
commit
3eb9049238

+ 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 }));