Skip to content

Commit b5c7596

Browse files
committed
fix: comment out debug display for keypress event count in Timeline component
1 parent 66c88fc commit b5c7596

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Timeline.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ export function Timeline({ events }: TimelineProps) {
432432
</div>
433433
</div>
434434

435-
<div className="text-xs text-sub mt-2">
435+
{/* <div className="text-xs text-sub mt-2">
436436
Showing {keypressBars.length} keypress
437437
{keypressBars.length !== 1 ? "es" : ""}
438438
{beforeInputBars.length > 0 &&
@@ -445,7 +445,7 @@ export function Timeline({ events }: TimelineProps) {
445445
{compositionEndBars.length > 0 &&
446446
`, ${compositionEndBars.length} compositionend`}
447447
{maxLevel > 0 && ` across ${maxLevel + 1} rows`}
448-
</div>
448+
</div> */}
449449
</div>
450450
);
451451
}

0 commit comments

Comments
 (0)