Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
isamu committed May 4, 2024
1 parent 212a1df commit 9f9dc5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const randomInt2 = (num: number) => {
export const generateGraph = (staticNode: number = 10, computedNode: number = 50, concurrency: number = 8): GraphData => {
const nodes: Record<string, NodeData> = {};
const inputsNode: string[] = [];
const outputNode: Record<number, string> = {};
// const outputNode: Record<number, string> = {};

arrays(staticNode).forEach((__i, k) => {
const name = "static_" + k;
Expand Down

0 comments on commit 9f9dc5d

Please sign in to comment.