We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b23c590 commit 556f13dCopy full SHA for 556f13d
components/dropbox/dropbox.app.mjs
@@ -389,13 +389,13 @@ export default {
389
this.normalizeError(err);
390
}
391
},
392
- async createSharedLink(args) { console.log(args);
+ async createSharedLink(args) {
393
try {
394
const dpx = await this.sdk();
395
const links = await dpx.sharingListSharedLinks({
396
path: args.path,
397
});
398
- const link = links.result?.links.find((l) => l.path_lower === args.path); console.log(link);
+ const link = links.result?.links.find((l) => l.path_lower === args.path);
399
if (link) {
400
return await dpx.sharingModifySharedLinkSettings({
401
...args,
0 commit comments