code7-leia 0.2.11 → 0.2.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.2.11",
2
+ "version": "0.2.13",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -92,7 +92,6 @@ export const FileArea = () => {
92
92
  }
93
93
 
94
94
  const handleOpenModalDelete = (name: string) => {
95
- console.log('--- handleOpenModalDelete: ', name);
96
95
  setFileDelete(name)
97
96
  setModalDelete(!modalDelete)
98
97
  }
@@ -109,8 +108,6 @@ export const FileArea = () => {
109
108
  }
110
109
 
111
110
  const deleteFile = () => {
112
- console.log('--- vai deletar: ', fileDelete);
113
-
114
111
  dispatch(deleteFilesAction(fileDelete, id, language, token))
115
112
  setModalDelete(false)
116
113
  }