Skip to content

Commit

Permalink
Import fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
martpie committed Dec 4, 2024
1 parent b7dee32 commit 8ebc87a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/components/TrackRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ import cx from 'classnames';
import type React from 'react';
import { useCallback, useState } from 'react';

import cellStyles from '../TracksListHeader/TracksListHeader.module.css';
import type { Track } from '../generated/typings';
import PlayingIndicator from './PlayingIndicator';

import useFormattedDuration from '../hooks/useFormattedDuration';
import PlayingIndicator from './PlayingIndicator';
import styles from './TrackRow.module.css';
import cellStyles from './TracksListHeader.module.css';

type Props = {
selected: boolean;
Expand Down
2 changes: 1 addition & 1 deletion src/components/VolumeControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import type React from 'react';
import { useCallback, useState } from 'react';
import Icon from 'react-fontawesome';

import controlStyles from '../PlayerControls/PlayerControls.module.css';
import player from '../lib/player';
import { stopPropagation } from '../lib/utils-events';
import { usePlayerAPI } from '../stores/usePlayerStore';

import controlStyles from './PlayerControls.module.css';
import styles from './VolumeControl.module.css';

// Volume easing - http://www.dr-lex.be/info-stuff/volumecontrols.html#about
Expand Down

0 comments on commit 8ebc87a

Please sign in to comment.