diff --git a/src/renderer/components/item-list/item-detail-list/item-detail-list.tsx b/src/renderer/components/item-list/item-detail-list/item-detail-list.tsx index 09b89635a..bb5001bfb 100644 --- a/src/renderer/components/item-list/item-detail-list/item-detail-list.tsx +++ b/src/renderer/components/item-list/item-detail-list/item-detail-list.tsx @@ -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), };