Skip to content

Commit

Permalink
Error messages should not overflow screen on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdjohnson committed Jul 25, 2024
1 parent cb4ed40 commit c406465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/LazyMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ const LazyMessage = observer(

{error.stack && (
<div className="collapse-content">
<p className="whitespace-pre-line pt-2 text-xs">{error.stack}</p>
<p className="whitespace-pre-line pt-2 text-xs break-all">{error.stack}</p>
</div>
)}
</div>
Expand Down

0 comments on commit c406465

Please sign in to comment.