Skip to content

Commit 1dfb72c

Browse files
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
1 parent 1b4e77c commit 1dfb72c

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ const tools = [
1515
export default function App() {
1616
return (
1717
<main className="tool-grid">
18-
{tools.map((tool) => (
18+
{tools.map((tool) => (
1919
<ToolCard key={tool.name} name={tool.name} content={tool.component} />
2020
))}
2121
</main>
2222
);
23-
}
23+
}

src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ const container = document.getElementById("app");
1313
if (!container) throw new Error("No root container found");
1414

1515
const root = createRoot(container);
16-
root.render(<App />);
16+
root.render(<App />);

src/sentry.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ Sentry.init({
77
integrations: [
88
Sentry.browserTracingIntegration(),
99
Sentry.replayIntegration(),
10-
new BrowserTracing(),
10+
new BrowserTracing(),
1111
new Replay(),
1212
],
1313
tracesSampleRate: 1.0,
1414
replaysSessionSampleRate: 0.1,
1515
replaysOnErrorSampleRate: 1.0,
1616
sendDefaultPii: true,
17-
enableTracing: true
18-
});
17+
enableTracing: true,
18+
});

0 commit comments

Comments
 (0)