Skip to content

Commit cee8937

Browse files
committed
Remove logging
1 parent 8281cfd commit cee8937

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

src/root.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ function getElementScrollScale() {
1919
return window.scrollY / (document.body.scrollHeight - window.innerHeight);
2020
}
2121

22-
console.log('root JS running.');
23-
2422
export default function Root() {
2523
onMount(() => {
2624
const setScroll = () => {

src/routes/index.tsx

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,11 @@ import Footer from '~/components/sections/footer';
77
import Starter from '~/components/sections/starter';
88
import Top from '~/components/sections/top';
99

10-
console.log('Index JS running.');
11-
1210
export default function Home() {
1311
const [connectors, setConnectors] = createSignal<string[]>();
14-
console.log('Loaded Component');
15-
console.log(connectors());
16-
setInterval(() => console.log(connectors()), 1000);
1712
onMount(async () => {
18-
console.log('Mounting...');
1913
const fetchedConnectors = await getConnectors();
20-
console.log('Got connectors', fetchedConnectors);
2114
setConnectors(fetchedConnectors);
22-
console.log('Set connectors', connectors());
2315
});
2416
return (
2517
<main>

0 commit comments

Comments
 (0)