Skip to content

Commit 556f13d

Browse files
committed
remove console.log
1 parent b23c590 commit 556f13d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/dropbox/dropbox.app.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,13 +389,13 @@ export default {
389389
this.normalizeError(err);
390390
}
391391
},
392-
async createSharedLink(args) { console.log(args);
392+
async createSharedLink(args) {
393393
try {
394394
const dpx = await this.sdk();
395395
const links = await dpx.sharingListSharedLinks({
396396
path: args.path,
397397
});
398-
const link = links.result?.links.find((l) => l.path_lower === args.path); console.log(link);
398+
const link = links.result?.links.find((l) => l.path_lower === args.path);
399399
if (link) {
400400
return await dpx.sharingModifySharedLinkSettings({
401401
...args,

0 commit comments

Comments
 (0)