diff --git a/src/components/widgets/QueryResult.tsx b/src/components/widgets/QueryResult.tsx index b58593f..402b064 100644 --- a/src/components/widgets/QueryResult.tsx +++ b/src/components/widgets/QueryResult.tsx @@ -17,7 +17,7 @@ export default function QueryResult({ query, children: render, }: QueryResultProps): ReactElement { - if (query.data) { + if (query.data !== undefined) { return render(query.data) }