Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
don't hide soup with error
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Apr 16, 2024
1 parent 19665e1 commit 7bc473e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-server-frontend/src/ExampleContentView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const ExampleContentView = () => {
/>
</ErrorBoundary>
)}
{pkg?.error && (
{pkg?.error && viewMode !== "soup" && (
<div className="absolute top-0 w-full">
<div className="bg-red-50 shadow-lg p-4 m-16 border-red-200 border rounded-lg whitespace-pre">
{pkg?.error}
Expand Down

0 comments on commit 7bc473e

Please sign in to comment.