Skip to content

Commit

Permalink
bug where commandline would be hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
joneugster committed Aug 30, 2023
1 parent d7fdd95 commit 714634f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/infoview/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,6 @@ export function CommandLineInterface(props: { world: string, level: number, data
</>
: <CircularProgress />}
</div>
<CommandLine proofPanelRef={proofPanelRef} hidden={proof[proof.length - 1]?.goals.length == 0}/>
<CommandLine proofPanelRef={proofPanelRef} hidden={!withErr && proof[proof.length - 1]?.goals.length == 0}/>
</div>
}

0 comments on commit 714634f

Please sign in to comment.