Skip to content

Commit dc8cb2f

Browse files
committed
Remove debug console.log statements from production files
1 parent f6ca1f1 commit dc8cb2f

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

apps/web/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
<meta name="theme-color" content="#161616" />
99
<link rel="icon" href="/favicon.ico" sizes="48x48" />
1010
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
11-
<script>
12-
console.log("index.html loaded at", new Date().toISOString());
13-
</script>
1411
<script>
1512
(() => {
1613
const LIGHT_BACKGROUND = "#ffffff";

apps/web/src/main.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
console.log("main.tsx loaded at", new Date().toISOString());
2-
31
import React from "react";
42
import ReactDOM from "react-dom/client";
53
import { RouterProvider } from "@tanstack/react-router";
@@ -28,5 +26,3 @@ ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
2826
<RouterProvider router={router} />
2927
</React.StrictMode>,
3028
);
31-
32-
console.log("main.tsx rendered at", new Date().toISOString());

0 commit comments

Comments
 (0)