Skip to content

Commit

Permalink
fix(ResultsDisplay): remove unnecessary queryResult check in renderin…
Browse files Browse the repository at this point in the history
…g logic
  • Loading branch information
mert-ergun committed Mar 6, 2025
1 parent 06a2b00 commit 00953ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crossbar_llm/frontend/src/components/ResultsDisplay.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function ResultsDisplay({ queryResult, executionResult, realtimeLogs }) {
</Card>
)}

{(queryResult || executionResult?.result) && (
{(executionResult?.result) && (
<Card sx={{ mb: 2 }}>
<CardContent>
{queryResult && (
Expand Down

0 comments on commit 00953ee

Please sign in to comment.