From 35292799b138d1a6d35ec7593c970044db1039dc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 11 Jul 2026 04:47:03 +0000 Subject: [PATCH 1/2] Initial plan From ffb9af3f72083df6317155939315373494e3b61e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 11 Jul 2026 04:49:01 +0000 Subject: [PATCH 2/2] Rename demo Sentry config variable to sentryDSN --- TracksDemo/Shared/CrashLoggingDataSource.swift | 2 +- TracksDemo/Shared/SentryConfig.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TracksDemo/Shared/CrashLoggingDataSource.swift b/TracksDemo/Shared/CrashLoggingDataSource.swift index c0b0f369..1d08c178 100644 --- a/TracksDemo/Shared/CrashLoggingDataSource.swift +++ b/TracksDemo/Shared/CrashLoggingDataSource.swift @@ -1,7 +1,7 @@ import AutomatticTracks struct CrashLoggingDataSource: CrashLoggingDataProvider { - var sentryDSN: String = SentryConfig.sentryDsn + var sentryDSN: String = SentryConfig.sentryDSN var userHasOptedOut: Bool = false diff --git a/TracksDemo/Shared/SentryConfig.swift b/TracksDemo/Shared/SentryConfig.swift index 39983b5c..c70dd5f5 100644 --- a/TracksDemo/Shared/SentryConfig.swift +++ b/TracksDemo/Shared/SentryConfig.swift @@ -1,6 +1,6 @@ import AutomatticTracks struct SentryConfig { - static let sentryDsn = "https://f60d42c1ce6c44cca339e4572feef2ef@o248881.ingest.sentry.io/5591863" + static let sentryDSN = "https://f60d42c1ce6c44cca339e4572feef2ef@o248881.ingest.sentry.io/5591863" static let tracksUser = TracksUser(email: "mobile+tracks-demo@automattic.com") }