Commit 98ded59 1 parent 30bdb9a commit 98ded59 Copy full SHA for 98ded59
File tree 2 files changed +1
-4
lines changed
views/components/injected
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,6 @@ import { createRoot } from 'react-dom/client';
8
8
const support = getSiteSupport ( window . location . href ) ;
9
9
10
10
const renderComponent = ( Component : React . ComponentType ) => {
11
- // Simple console log for component rendering
12
- console . log ( 'Rendering component:' , Component . name || 'Anonymous' ) ;
13
-
14
11
const container = document . createElement ( 'div' ) ;
15
12
container . id = 'extension-root' ;
16
13
document . body . appendChild ( container ) ;
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export default function DaysCheckbox(): JSX.Element | null {
78
78
< input
79
79
type = 'checkbox'
80
80
id = { `day_${ day } ` }
81
- checked = { daysValue !== '000000' && daysValue . charAt ( index ) === '1' }
81
+ checked = { daysValue . charAt ( index ) === '1' }
82
82
onChange = { e => {
83
83
handleDayChange ( index , e . target . checked ) ;
84
84
} }
You can’t perform that action at this time.
0 commit comments