Skip to content

Commit

Permalink
update other installquery
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-ashleyintech committed Nov 18, 2024
1 parent 7f70036 commit 6b549f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/listener/builtin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ export class TokenRevocationListeners {

const installQuery: InstallationQuery<typeof isEnterpriseInstall> = {
isEnterpriseInstall: isEnterpriseInstall,
teamId: isEnterpriseInstall ? context.teamId : undefined,
enterpriseId: isEnterpriseInstall ? context.enterpriseId : undefined
teamId: context.teamId,
enterpriseId: context.enterpriseId,
};

this.installationStore.deleteInstallation(installQuery, this.logger);

Check failure on line 43 in src/listener/builtin.ts

View workflow job for this annotation

GitHub Actions / examples (18.x, examples/custom-receiver)

Cannot invoke an object which is possibly 'undefined'.

Check failure on line 43 in src/listener/builtin.ts

View workflow job for this annotation

GitHub Actions / build (20.x)

Cannot invoke an object which is possibly 'undefined'.

Check failure on line 43 in src/listener/builtin.ts

View workflow job for this annotation

GitHub Actions / examples (18.x, examples/getting-started-typescript)

Cannot invoke an object which is possibly 'undefined'.

Check failure on line 43 in src/listener/builtin.ts

View workflow job for this annotation

GitHub Actions / examples (20.x, examples/custom-receiver)

Cannot invoke an object which is possibly 'undefined'.

Check failure on line 43 in src/listener/builtin.ts

View workflow job for this annotation

GitHub Actions / examples (22.x, examples/getting-started-typescript)

Cannot invoke an object which is possibly 'undefined'.

Check failure on line 43 in src/listener/builtin.ts

View workflow job for this annotation

GitHub Actions / build (18.x)

Cannot invoke an object which is possibly 'undefined'.

Check failure on line 43 in src/listener/builtin.ts

View workflow job for this annotation

GitHub Actions / examples (22.x, examples/custom-receiver)

Cannot invoke an object which is possibly 'undefined'.

Check failure on line 43 in src/listener/builtin.ts

View workflow job for this annotation

GitHub Actions / build (22.x)

Cannot invoke an object which is possibly 'undefined'.

Check failure on line 43 in src/listener/builtin.ts

View workflow job for this annotation

GitHub Actions / examples (20.x, examples/getting-started-typescript)

Cannot invoke an object which is possibly 'undefined'.
Expand Down

0 comments on commit 6b549f0

Please sign in to comment.