diff --git a/src/renderer/components/virtual-table/cells/row-index-cell.tsx b/src/renderer/components/virtual-table/cells/row-index-cell.tsx
index 13d46142..9307e788 100644
--- a/src/renderer/components/virtual-table/cells/row-index-cell.tsx
+++ b/src/renderer/components/virtual-table/cells/row-index-cell.tsx
@@ -2,95 +2,95 @@ import type { ICellRendererParams } from '@ag-grid-community/core';
import { Text } from '/@/renderer/components/text';
import { CellContainer } from '/@/renderer/components/virtual-table/cells/generic-cell';
-const AnimatedSvg = () => {
- return (
-
-
-
- );
-};
+// const AnimatedSvg = () => {
+// return (
+//
+//
+//
+// );
+// };
const StaticSvg = () => {
return (
@@ -134,19 +134,14 @@ const StaticSvg = () => {
export const RowIndexCell = ({ value, eGridCell }: ICellRendererParams) => {
const classList = eGridCell.classList;
- const isFocused = classList.contains('focused');
+ // const isFocused = classList.contains('focused');
const isPlaying = classList.contains('playing');
const isCurrentSong =
classList.contains('current-song-cell') || classList.contains('current-playlist-song-cell');
return (
- {isPlaying &&
- (isFocused && isCurrentSong ? (
-
- ) : isCurrentSong ? (
-
- ) : null)}
+ {isPlaying && (isCurrentSong ? : null)}