From 1dfb72c742dc0c385ab95590bc7f9f6a86c2db13 Mon Sep 17 00:00:00 2001
From: "deepsource-autofix[bot]"
<62050782+deepsource-autofix[bot]@users.noreply.github.com>
Date: Fri, 19 Sep 2025 05:26:57 +0000
Subject: [PATCH] style: format code with ClangFormat, dotnet-format, Prettier,
RuboCop, Rustfmt, Scalafmt, StandardJS, StandardRB and swift-format
This commit fixes the style issues introduced in 1b4e77c according to the output
from ClangFormat, dotnet-format, Prettier, RuboCop, Rustfmt, Scalafmt,
StandardJS, StandardRB and swift-format.
Details: None
---
src/App.tsx | 4 ++--
src/main.tsx | 2 +-
src/sentry.ts | 6 +++---
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/App.tsx b/src/App.tsx
index aa86448..a858e71 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -15,9 +15,9 @@ const tools = [
export default function App() {
return (
- {tools.map((tool) => (
+ {tools.map((tool) => (
))}
);
-}
\ No newline at end of file
+}
diff --git a/src/main.tsx b/src/main.tsx
index 97e08c9..c136fc0 100644
--- a/src/main.tsx
+++ b/src/main.tsx
@@ -13,4 +13,4 @@ const container = document.getElementById("app");
if (!container) throw new Error("No root container found");
const root = createRoot(container);
-root.render();
\ No newline at end of file
+root.render();
diff --git a/src/sentry.ts b/src/sentry.ts
index 01608b4..51871e5 100644
--- a/src/sentry.ts
+++ b/src/sentry.ts
@@ -7,12 +7,12 @@ Sentry.init({
integrations: [
Sentry.browserTracingIntegration(),
Sentry.replayIntegration(),
- new BrowserTracing(),
+ new BrowserTracing(),
new Replay(),
],
tracesSampleRate: 1.0,
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 1.0,
sendDefaultPii: true,
- enableTracing: true
-});
\ No newline at end of file
+ enableTracing: true,
+});