remove custom monospace font columns

This commit is contained in:
jeffvli
2026-02-09 21:15:12 -08:00
parent d82ded479e
commit 1a51d52047
@@ -306,10 +306,6 @@ const TrackRow = memo(
const { fixedWidth, isFixedColumn } = getTrackColumnFixed(col.id);
const style: React.CSSProperties = {
flex: isFixedColumn ? `0 0 ${fixedWidth}px` : `${percent} 1 0`,
fontFamily:
col.id === TableColumn.DURATION || col.id === TableColumn.TRACK_NUMBER
? 'monospace'
: undefined,
minWidth: isFixedColumn ? fixedWidth : 0,
textAlign: textAlignFromAlign(col.align),
};