File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed
apps/website/src/components Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -539,7 +539,6 @@ export default component$<PropsOf<typeof Button>>(() => {
539
539
themeComputedObjectSig . value . mode =
540
540
themeComputedObjectSig . value . mode ?. includes ( 'light' ) ? 'dark' : 'light' ;
541
541
542
- console . log ( themeComputedObjectSig . value . mode ) ;
543
542
setTheme ( await themeStoreToThemeClasses$ ( ) ) ;
544
543
} }
545
544
/>
Original file line number Diff line number Diff line change @@ -33,12 +33,10 @@ const useActiveItem = (itemIds: string[]) => {
33
33
const observer = new IntersectionObserver ( ( entries ) => {
34
34
entries . forEach ( ( entry ) => {
35
35
if ( entry . isIntersecting ) {
36
- console . log ( 'entry: ' , entry . isIntersecting , entry . target . id ) ;
37
36
activeId . value = entry . target . id ;
38
37
}
39
38
} ) ;
40
39
} ) ;
41
- console . log ( 'observer: ' , observer ) ;
42
40
43
41
itemIds . forEach ( ( id ) => {
44
42
const element = document . getElementById ( id ) ;
@@ -67,7 +65,6 @@ type TreeProps = QwikIntrinsicElements['ul'] & {
67
65
} ;
68
66
69
67
const Tree = component$ < TreeProps > ( ( { headings, level = 1 , activeItem } ) => {
70
- console . log ( 'level: ' , level ) ;
71
68
return headings . length > 0 && level < 3 ? (
72
69
< ul class = { cn ( 'm-0 list-none' , { 'pl-4' : level !== 1 } ) } >
73
70
{ headings . map ( ( heading ) => {
You can’t perform that action at this time.
0 commit comments