Skip to content

Commit 1fb0089

Browse files
committed
updates
1 parent 104786f commit 1fb0089

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

components/vercel_token_auth/actions/create-deployment/create-deployment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default {
5959
ref: this.branch,
6060
},
6161
};
62-
if (!this.project) {
62+
if (!this.project) { // projectSettings required if project is not specified
6363
data.projectSettings = {
6464
buildCommand: null,
6565
commandForIgnoringBuildStep: null,

components/vercel_token_auth/actions/list-deployments/list-deployments.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default {
1919
vercelTokenAuth,
2020
"project",
2121
(c) => ({
22-
teamId: c.teamId,
22+
teamId: c.team,
2323
}),
2424
],
2525
},

components/vercel_token_auth/sources/new-deployment/new-deployment.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default {
2828
vercelTokenAuth,
2929
"project",
3030
(c) => ({
31-
teamId: c.teamId,
31+
teamId: c.team,
3232
}),
3333
],
3434
},
@@ -72,7 +72,7 @@ export default {
7272
},
7373
async processEvent(max) {
7474
const params = {
75-
teamId: this.teamId,
75+
teamId: this.team,
7676
projectId: this.project,
7777
state: this.state,
7878
};

0 commit comments

Comments
 (0)