Skip to content

Commit 2f80b98

Browse files
committed
fix: remove console.log
1 parent e399a16 commit 2f80b98

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/agent.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ const Webserver = {
254254
.withCredentials()
255255
.catch(handleErrors)
256256
.then(res => {
257-
console.log(res);
257+
// console.log(res);
258258
})
259259
},
260260
writePathContent: async (path, content, loginAccess = {
@@ -290,7 +290,7 @@ const Webserver = {
290290
.withCredentials()
291291
.catch(handleErrors)
292292
.then(res => {
293-
console.log(res);
293+
// console.log(res);
294294
})
295295
},
296296
getFile: path =>

src/stores/videoExplorerStore.js

-2
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,6 @@ export class videoExplorerStore {
228228
feedbackFilename
229229
);
230230

231-
console.log(feedbackPath)
232-
233231
return agent.Webserver.writePathContent(
234232
feedbackPath,
235233
`{"content": "${feedbackContent}", "timestamp": ${timestamp}}`

0 commit comments

Comments
 (0)