Skip to content

Commit

Permalink
allow passing in environment
Browse files Browse the repository at this point in the history
  • Loading branch information
armandobelardo committed Aug 1, 2024
1 parent d9f9e4d commit 2124817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/template-resolver/src/SnippetTemplateResolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export class SnippetTemplateResolver {
// If we were not provided an API definition, try to get it from FDR
if (this.maybeApiDefinitionId != null && !this.apiDefinitionHasBeenRequested) {
this.apiDefinitionHasBeenRequested = true;
this.maybeApiDefinition = await getApiDefinition(this.maybeApiDefinitionId);
this.maybeApiDefinition = await getApiDefinition(this.maybeApiDefinitionId, undefined);
return this.maybeApiDefinition;
}

Expand Down

0 comments on commit 2124817

Please sign in to comment.