Skip to content

Commit c971209

Browse files
committed
updates
1 parent d7f4e8e commit c971209

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

components/teamwork/actions/create-user/create-user.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ export default {
482482

483483
const response = await this.app.createPerson(data, $);
484484

485-
$.export("$summary", `User wit ID:${this.firstName} ${this.lastName} created successfully`);
485+
$.export("$summary", `User ${this.firstName} ${this.lastName} created successfully`);
486486
return response;
487487
},
488488
};

components/teamwork/actions/list-users/list-users.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default {
4343
},
4444
},
4545
async run({ $ }) {
46-
let total, count = 0, page = 1;;
46+
let total, count = 0, page = 1;
4747
let users = [];
4848
const params = {
4949
sort: this.sort,

components/teamwork/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
},
1515
"dependencies": {
1616
"@pipedream/platform": "^3.1.0",
17-
"crypto": "^1.0.1",
1817
"uuid": "^9.0.0"
1918
}
2019
}

0 commit comments

Comments
 (0)