Skip to content

Commit

Permalink
feat: Updated packages/workflow/src/Expression.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Jan 4, 2024
1 parent 1901011 commit 4f84367
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/workflow/src/Expression.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ export class Expression {
}
}
return returnValue;
} catch (e) {
throw new Error(`Expression is not valid: ${e.message}`);
} catch (e: any) {
throw new Error(`Expression is not valid: ${(e as any).message}`);
}
}

Expand Down

0 comments on commit 4f84367

Please sign in to comment.