We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a155b9 commit a2898c4Copy full SHA for a2898c4
1 file changed
src/hooks/useCellOutputs.tsx
@@ -121,7 +121,6 @@ export const useCellOutputs = ({
121
// Note: this approach is not ideal, but it ensures that if this component throws, we can put an error boundary that works
122
// Otherwise, just calling `<ErrorBoundary FallbackComponent={OutputsErrorBoundary}>renderOutputs()</ErrorBoundary>` will not work as expected
123
const MaybeOutputs = useCallback(() => {
124
- throw new Error("test");
125
if (!hasOutputs) return null;
126
127
// Apply grouping strategy based on cell type
0 commit comments