Skip to content

Commit

Permalink
Clean
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronPlave committed Jul 19, 2024
1 parent 7066455 commit 81d9b52
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/routes/plans/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,6 @@
if ($startTimeField.valid && $endTimeField.valid) {
let startTimeMs = $plugins.time.primary.parse($startTimeField.value)?.getTime();
let endTimeMs = $plugins.time.primary.parse($endTimeField.value)?.getTime();
console.log('startTimeMs, endTimeMs :>> ', startTimeMs, endTimeMs);
if (typeof startTimeMs === 'number' && typeof endTimeMs === 'number') {
durationString = convertUsToDurationString((endTimeMs - startTimeMs) * 1000);
Expand Down

0 comments on commit 81d9b52

Please sign in to comment.