Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Jun 14, 2024
1 parent e5b8813 commit abf523e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

## Version History

### v4.10.2

- :bug: Remove extraneous `await`

### v4.10.1

- :bug: Maintain previous exports
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export default class TaskBase {
async env<T extends TSchema = TUnknown>(type: T): Promise<Static<T>> {
if (!this.layer) await this.fetchLayer();

const env = await this.layer.environment;
const env = this.layer.environment;

const typeChecker = TypeCompiler.Compile(type)
const result = typeChecker.Check(env);
Expand Down

0 comments on commit abf523e

Please sign in to comment.