File tree Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,6 @@ function getElementScrollScale() {
19
19
return window . scrollY / ( document . body . scrollHeight - window . innerHeight ) ;
20
20
}
21
21
22
- console . log ( 'root JS running.' ) ;
23
-
24
22
export default function Root ( ) {
25
23
onMount ( ( ) => {
26
24
const setScroll = ( ) => {
Original file line number Diff line number Diff line change @@ -7,19 +7,11 @@ import Footer from '~/components/sections/footer';
7
7
import Starter from '~/components/sections/starter' ;
8
8
import Top from '~/components/sections/top' ;
9
9
10
- console . log ( 'Index JS running.' ) ;
11
-
12
10
export default function Home ( ) {
13
11
const [ connectors , setConnectors ] = createSignal < string [ ] > ( ) ;
14
- console . log ( 'Loaded Component' ) ;
15
- console . log ( connectors ( ) ) ;
16
- setInterval ( ( ) => console . log ( connectors ( ) ) , 1000 ) ;
17
12
onMount ( async ( ) => {
18
- console . log ( 'Mounting...' ) ;
19
13
const fetchedConnectors = await getConnectors ( ) ;
20
- console . log ( 'Got connectors' , fetchedConnectors ) ;
21
14
setConnectors ( fetchedConnectors ) ;
22
- console . log ( 'Set connectors' , connectors ( ) ) ;
23
15
} ) ;
24
16
return (
25
17
< main >
You can’t perform that action at this time.
0 commit comments