Skip to content

Commit

Permalink
chore: add boolean to type
Browse files Browse the repository at this point in the history
  • Loading branch information
lydiagarms committed Jul 23, 2024
1 parent 9160566 commit ea819dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transformers/visitors/toCircuitVisitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ const visitor = {
IfStatement: {
enter(path: NodePath, state: any) {
const { node, parent, scope } = path;
let isIfStatementSecret;
let isIfStatementSecret: boolean;
let interactsWithSecret = false;
function bodyInteractsWithSecrets(statements) {
statements.forEach((st) => {
Expand Down

0 comments on commit ea819dc

Please sign in to comment.