Skip to content

Commit

Permalink
Merge pull request #72 from Secured-Finance/SF-948
Browse files Browse the repository at this point in the history
fix: fix error for staging env [SF-953]
  • Loading branch information
NetFreak26 authored Dec 14, 2023
2 parents bb1235d + b7afc9d commit 98738f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Main {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const data = load(yamlText) as any;
const networkName =
this.environment === 'development'
this.environment === 'development' || this.environment === 'staging'
? this.environment
: this.network;

Expand Down

0 comments on commit 98738f9

Please sign in to comment.