Skip to content

Commit

Permalink
Merge pull request #333 from AppQuality/develop
Browse files Browse the repository at this point in the history
fix: Fix typo in env variable
  • Loading branch information
d-beezee authored May 23, 2024
2 parents 616fbbd + 3c77151 commit 5b90878
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/webhookTrigger/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class WebhookTrigger<T extends WebhookTypes["type"]>
try {
await axios.post(this.webhookUrl, {
...this.data,
environment: process.env.ENVIROMENT,
environment: process.env.ENVIRONMENT,
});
} catch (e) {
console.error("Error triggering webhook", e);
Expand Down

0 comments on commit 5b90878

Please sign in to comment.