From 890fb147b0089a09898fdd5a9291c15fd5a935ca Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 24 Jan 2026 00:19:10 +0000 Subject: [PATCH] Fix syntax error: remove extra comma in Sentry config Co-authored-by: Sunwuyuan <88357633+Sunwuyuan@users.noreply.github.com> --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index 82a5c4d..e25ff9f 100644 --- a/src/main.js +++ b/src/main.js @@ -44,7 +44,7 @@ Sentry.init({ tracePropagationTargets: ["localhost", /^https:\/\/yourserver\.io\/api/], // Session Replay replaysSessionSampleRate: 0.1, // This sets the sample rate at 10%. You may want to change it to 100% while in development and then sample at a lower rate in production. - replaysOnErrorSampleRate: 1.0, // If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur., + replaysOnErrorSampleRate: 1.0, // If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur. // Logs enableLogs: true });