Skip to content

Commit e8b68e1

Browse files
author
Luca Forstner
authored
docs(remix): Adjust wording in Remix README (#5357)
1 parent 7a0e72e commit e8b68e1

File tree

1 file changed

+18
-17
lines changed

1 file changed

+18
-17
lines changed

packages/remix/README.md

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
[![npm dt](https://img.shields.io/npm/dt/@sentry/nextjs.svg)](https://www.npmjs.com/package/@sentry/remix)
1212
[![typedoc](https://img.shields.io/badge/docs-typedoc-blue.svg)](http://getsentry.github.io/sentry-javascript/)
1313

14-
This SDK is considering experimental and in an alpha state. It may experience breaking changes. Please reach out on [GitHub](https://github.com/getsentry/sentry-javascript/issues/new/choose) if you have any feedback/concerns.
14+
This SDK is considered experimental and in an alpha state. It may experience breaking changes. Please reach out on [GitHub](https://github.com/getsentry/sentry-javascript/issues/new/choose) if you have any feedback/concerns.
15+
1516
## General
1617

1718
This package is a wrapper around `@sentry/node` for the server and `@sentry/react` for the client, with added functionality related to Remix.
@@ -73,21 +74,21 @@ import {
7374
import { ErrorBoundary, withSentryRouteTracing } from "@sentry/remix";
7475

7576
function App() {
76-
return (
77-
<ErrorBoundary>
78-
<html>
79-
<head>
80-
<Meta />
81-
<Links />
82-
</head>
83-
<body>
84-
<Outlet />
85-
<ScrollRestoration />
86-
<Scripts />
87-
<LiveReload />
88-
</body>
89-
</html>
90-
</ErrorBoundary>
77+
return (
78+
<ErrorBoundary>
79+
<html>
80+
<head>
81+
<Meta />
82+
<Links />
83+
</head>
84+
<body>
85+
<Outlet />
86+
<ScrollRestoration />
87+
<Scripts />
88+
<LiveReload />
89+
</body>
90+
</html>
91+
</ErrorBoundary>
9192
);
9293
}
9394

@@ -126,7 +127,7 @@ Sentry.captureEvent({
126127

127128
## Sourcemaps and Releases
128129

129-
The Remix SDK provides a script that automatically creates a release and uploads sourcemaps. To generate sourcemaps with Remix, you need to call `remix build` with `--sourcemap` option.
130+
The Remix SDK provides a script that automatically creates a release and uploads sourcemaps. To generate sourcemaps with Remix, you need to call `remix build` with the `--sourcemap` option.
130131

131132
On release, call `sentry-upload-sourcemaps` to upload source maps and create a release. To see more details on how to use the command, call `sentry-upload-sourcemaps --help`.
132133

0 commit comments

Comments
 (0)