aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/index.tsx32
1 files changed, 15 insertions, 17 deletions
diff --git a/src/index.tsx b/src/index.tsx
index a7fdd2a..a63c9e1 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -62,23 +62,21 @@ const rootDocument = document.getElementById("root");
const root = createRoot(rootDocument!);
root.render(
- <React.StrictMode>
- <Sentry.ErrorBoundary
- fallback={<p>An error has occurred with Python Discord Forms. Please let us know in the Discord server at <a href="https://discord.gg/python">discord.gg/python</a></p>}
- showDialog={true}
- dialogOptions={{
- title: "You've found a bug in PyDis forms!"
- }}
- onError={(err) => {
- if(process.env.NODE_ENV === "development")
- console.log(err);
- }}
- >
- <Provider store={formsStore}>
- <App/>
- </Provider>
- </Sentry.ErrorBoundary>
- </React.StrictMode>
+ <Sentry.ErrorBoundary
+ fallback={<p>An error has occurred with Python Discord Forms. Please let us know in the Discord server at <a href="https://discord.gg/python">discord.gg/python</a></p>}
+ showDialog={true}
+ dialogOptions={{
+ title: "You've found a bug in PyDis forms!"
+ }}
+ onError={(err) => {
+ if(process.env.NODE_ENV === "development")
+ console.log(err);
+ }}
+ >
+ <Provider store={formsStore}>
+ <App/>
+ </Provider>
+ </Sentry.ErrorBoundary>
);
serviceWorker.unregister();