We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 759fef5 commit 4c3d32eCopy full SHA for 4c3d32e
site/src/index.tsx
@@ -1,5 +1,5 @@
1
-import { createRoot } from "react-dom/client";
2
import { tryLoadAndStartRecorder } from "@alwaysmeticulous/recorder-loader";
+import { createRoot } from "react-dom/client";
3
import { App } from "./App";
4
5
console.info(` ▄█▀ ▀█▄
@@ -33,8 +33,11 @@ function isInternal() {
33
return (
34
window.location.hostname.indexOf("dev.coder.com") > -1 ||
35
window.location.hostname.indexOf("localhost") > -1 ||
36
- window.location.hostname.indexOf("127.0.0.1") > -1
+ window.location.hostname.indexOf("127.0.0.1") > -1 ||
37
+ window.location.hostname.indexOf("qpmefhb7mbvgs.pit-1.try.coder.app") > -1
38
);
39
}
40
-startApp();
41
+startApp().catch((error) => {
42
+ console.error(error);
43
+});
0 commit comments