mirror of
https://github.com/FranP-code/Pomodoro-Timer-with-Clockify-integration.git
synced 2025-10-12 23:52:30 +00:00
Solved some console errors
This commit is contained in:
@@ -6,7 +6,7 @@ const DarkMode = () => {
|
|||||||
<input type="checkbox" id="dark-mode_toogle-switch" onChange={() => {
|
<input type="checkbox" id="dark-mode_toogle-switch" onChange={() => {
|
||||||
|
|
||||||
}}/>
|
}}/>
|
||||||
<label for="dark-mode_toogle-switch"></label>
|
<label htmlFor="dark-mode_toogle-switch"></label>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -97,7 +97,7 @@ const MainPomodoro = (props) => {
|
|||||||
</h3>
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button class="start-pomodoro" onClick={() => props.setTimerOn(!props.timerOn)}>{
|
<button className="start-pomodoro" onClick={() => props.setTimerOn(!props.timerOn)}>{
|
||||||
props.timerOn ? 'STOP' : 'START'
|
props.timerOn ? 'STOP' : 'START'
|
||||||
|
|
||||||
}</button>
|
}</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user