Skip to content

Commit

Permalink
chore: only show forced message in playstore build as we get sentry r…
Browse files Browse the repository at this point in the history
…eport.
  • Loading branch information
farfromrefug committed Nov 12, 2024
1 parent faa511b commit a579a7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ try {
syncService.syncDocuments();
}
} catch (error) {
showError(error, { forcedMessage: lc('startup_error') });
showError(error, PLAY_STORE_BUILD ? { forcedMessage: lc('startup_error') } : {});
}
}
Application.on(Application.launchEvent, async () => {
Expand Down

0 comments on commit a579a7c

Please sign in to comment.