Skip to content

Commit 4c7b85f

Browse files
committed
lint
1 parent 4ba11f9 commit 4c7b85f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

site/src/index.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { createRoot } from "react-dom/client";
21
import { tryLoadAndStartRecorder } from "@alwaysmeticulous/recorder-loader";
2+
import { createRoot } from "react-dom/client";
33
import { App } from "./App";
44

55
console.info(` ▄█▀ ▀█▄
@@ -33,8 +33,11 @@ function isInternal() {
3333
return (
3434
window.location.hostname.indexOf("dev.coder.com") > -1 ||
3535
window.location.hostname.indexOf("localhost") > -1 ||
36-
window.location.hostname.indexOf("127.0.0.1") > -1
36+
window.location.hostname.indexOf("127.0.0.1") > -1 ||
37+
window.location.hostname.indexOf("qpmefhb7mbvgs.pit-1.try.coder.app") > -1
3738
);
3839
}
3940

40-
startApp();
41+
startApp().catch((error) => {
42+
console.error(error);
43+
});

0 commit comments

Comments
 (0)