Skip to content

Commit

Permalink
fix(ios): ensure error are fully shown #102
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Feb 26, 2024
1 parent bf107ca commit 26ae583
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/utils/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,9 @@ export async function showError(
// if (!PRODUCTION) {
// }
const label = new Label();
label.style.padding = '10 20 0 20';
label.style.color = new Color(255, 138, 138, 138);
label.padding = '10 20 0 20';
label.textWrap = true;
label.color = new Color(255, 138, 138, 138);
label.html = message.trim();

if (realError && reporterEnabled) {
Expand Down

0 comments on commit 26ae583

Please sign in to comment.