Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/shared/generate-circuit-json.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@

const loggedAsyncEffectNames = new Set<string>()

while (runner._hasIncompleteAsyncEffects()) {
while (runner.isDoneRendering()) {

Check failure on line 138 in lib/shared/generate-circuit-json.tsx

View workflow job for this annotation

GitHub Actions / test (3)

TypeError: runner.isDoneRendering is not a function. (In 'runner.isDoneRendering()'

at generateCircuitJson (/home/runner/work/cli/cli/lib/shared/generate-circuit-json.tsx:138:17) at async <anonymous> (/home/runner/work/cli/cli/tests/shared/static-file-loader-map.test.ts:64:33)
for (const asyncEffect of runner.getRunningAsyncEffects()) {
const asyncEffectName = asyncEffect.effectName
if (!asyncEffectName || loggedAsyncEffectNames.has(asyncEffectName)) {
Expand Down
Loading