Skip to content

Commit

Permalink
type any fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RODO94 committed Nov 11, 2024
1 parent 1623a33 commit 74843e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/tests/api-driven/src/demo-workspace/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ export const createFlowFromArray = async (
slug: flow.slug,
});
return flowId;
} catch (error: any) {
console.error(`Error adding flow ${flow.slug}`, error.message);
} catch (error) {
console.error(`Error adding flow ${flow.slug}`, error);
return false;
}
};
Expand Down

0 comments on commit 74843e6

Please sign in to comment.