File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -1865,11 +1865,9 @@ export class PomodoroTimer {
18651865 async updateProgressDots ( ) {
18661866 const dots = this . progressDots . querySelectorAll ( '.dot' ) ;
18671867
1868- // Remove any existing overflow indicator
1869- const existingOverflow = this . progressDots . querySelector ( '.overflow-indicator' ) ;
1870- if ( existingOverflow ) {
1871- existingOverflow . remove ( ) ;
1872- }
1868+ // Remove any existing overflow indicators
1869+ const existingOverflows = this . progressDots . querySelectorAll ( '.overflow-indicator' ) ;
1870+ existingOverflows . forEach ( overflow => overflow . remove ( ) ) ;
18731871
18741872 // Get actual completed sessions count from SessionManager
18751873 const actualCompletedSessions = await this . getCompletedSessionsToday ( ) ;
You can’t perform that action at this time.
0 commit comments