We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d29ceaa commit eaa2adbCopy full SHA for eaa2adb
1 file changed
apps/code/src/renderer/features/inbox/components/detail/SignalCard.tsx
@@ -570,7 +570,7 @@ function CodePathsCollapsible({ paths }: { paths: string[] }) {
570
function DataQueriedCollapsible({ text }: { text: string }) {
571
const [expanded, setExpanded] = useState(false);
572
573
- if (!text) return null;
+ if (!text.trim()) return null;
574
575
return (
576
<Box mt="2" style={{ borderTop: "1px solid var(--gray-5)" }} pt="2">
0 commit comments