We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef54939 commit 9f63fd2Copy full SHA for 9f63fd2
1 file changed
website/src/workbench/problems/clients/paneView/index.tsx
@@ -16,7 +16,7 @@ const treeLeafSubInfoClassName = getBEMElement(treeLeafClassName, 'subInfo');
16
17
function ProblemsPaneView({ problemsService }: { problemsService: any }) {
18
const localize = useLocale();
19
- const [data, setData] = useState(() => problemsService.get());
+ const [data, setData] = useState(() => problemsService.get()?.filter(Boolean));
20
21
useEffect(() => {
22
const unsubscribe = problemsService.subscribeData(setData);
0 commit comments