Skip to content

Commit fe8f9ef

Browse files
Project Ordering Fix
- For some reason it wouldn't change order if you were to use an older project name...thus updating it to a more recent date - Working as intended now. Most recent project goes to the top
1 parent 3cbd8b8 commit fe8f9ef

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/timer.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ async function stopTimer(){
4848
const logTime = logStopTime - logStartTime;
4949
const formatLogTime = formatTime(logTime);
5050
clearInterval(timerInterval);
51-
logTimeHandler(formatLogTime);
52-
populateQuickTimes();
53-
getAllActiveProjects();
51+
await logTimeHandler(formatLogTime);
52+
await populateQuickTimes();
53+
await getAllActiveProjects();
5454
toggleInputsDiv();
5555
}
5656

0 commit comments

Comments
 (0)