Skip to content

Commit

Permalink
type check fix
Browse files Browse the repository at this point in the history
  • Loading branch information
imrishabh18 committed Jan 26, 2025
1 parent 1c72781 commit bfcf436
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"@types/react": "^19.0.2",
"circuit-json": "^0.0.124",
"circuit-json": "^0.0.134",
"debug": "^4.4.0",
"react": "^18.3.1",
"tsup": "^8.3.5"
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/render-circuit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ export const renderCircuit = (reactNode: React.ReactElement): CircuitJson => {
const circuit = new Circuit()
circuit.add(reactNode)
circuit.render()
return circuit.getCircuitJson()
return circuit.getCircuitJson() as CircuitJson
}

0 comments on commit bfcf436

Please sign in to comment.