From 09bd795088c62c704fd9720c9a6b823040e8abee Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 28 Nov 2023 15:04:54 -0600 Subject: [PATCH] Replace invalid character --- src/lib/sentry.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/sentry.ts b/src/lib/sentry.ts index 740b0e60a0..1de8635d7f 100644 --- a/src/lib/sentry.ts +++ b/src/lib/sentry.ts @@ -18,10 +18,10 @@ const buildChannel = (info.channel || 'development') as /** * Examples: - * - `ios@1.57.0(3)` - * - `android@1.57.0(46)` + * - `ios-1.57.0(3)` + * - `android-1.57.0(46)` */ -const appVersion = `${Platform.OS}@${app.appVersion}(${app.buildVersion})` +const appVersion = `${Platform.OS}-${app.appVersion}(${app.buildVersion})` init({ dsn: 'https://05bc3789bf994b81bd7ce20c86ccd3ae@o4505071687041024.ingest.sentry.io/4505071690514432',