disable sentry by default to avoid looking for config files

Change-Id: Ie7fab7ee84e9ab704e0f0e72b7ab82a6e92be2ac
diff --git a/client/src/index.js b/client/src/index.js
index 199cb6f..e0bc61b 100644
--- a/client/src/index.js
+++ b/client/src/index.js
@@ -7,7 +7,7 @@
 import { Provider } from "react-redux";
 import { BrowserRouter as Router } from "react-router-dom";
 
-import config from "../sentry-client.config.json"
+// import config from "../sentry-client.config.json"
 import * as Sentry from "@sentry/react";
 import { BrowserTracing } from "@sentry/tracing";
 
@@ -17,10 +17,10 @@
 const rootEl = document.getElementById("root");
 var exports = {};
 
-Sentry.init({
-  ...config,
-  integrations: [new BrowserTracing()],
-});
+// Sentry.init({
+//   ...config,
+//   integrations: [new BrowserTracing()],
+// });
 
 const render = (Component) =>
   ReactDOM.render(