Skip to content

Commit 98ded59

Browse files
committed
refactor: remove console logs
1 parent 30bdb9a commit 98ded59

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/pages/content/index.tsx

-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ import { createRoot } from 'react-dom/client';
88
const support = getSiteSupport(window.location.href);
99

1010
const renderComponent = (Component: React.ComponentType) => {
11-
// Simple console log for component rendering
12-
console.log('Rendering component:', Component.name || 'Anonymous');
13-
1411
const container = document.createElement('div');
1512
container.id = 'extension-root';
1613
document.body.appendChild(container);

src/views/components/injected/DaysCheckbox.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default function DaysCheckbox(): JSX.Element | null {
7878
<input
7979
type='checkbox'
8080
id={`day_${day}`}
81-
checked={daysValue !== '000000' && daysValue.charAt(index) === '1'}
81+
checked={daysValue.charAt(index) === '1'}
8282
onChange={e => {
8383
handleDayChange(index, e.target.checked);
8484
}}

0 commit comments

Comments
 (0)