diff --git a/src/renderer/components/item-list/item-detail-list/columns/path-column.tsx b/src/renderer/components/item-list/item-detail-list/columns/path-column.tsx index eb43ba975..adbe2f28c 100644 --- a/src/renderer/components/item-list/item-detail-list/columns/path-column.tsx +++ b/src/renderer/components/item-list/item-detail-list/columns/path-column.tsx @@ -1,4 +1,5 @@ import { ItemDetailListCellProps } from './types'; + import { resolveSongPath } from '/@/renderer/utils/resolve-song-path'; export const PathColumn = ({ song }: ItemDetailListCellProps) => diff --git a/src/renderer/features/context-menu/actions/show-in-file-explorer-action.tsx b/src/renderer/features/context-menu/actions/show-in-file-explorer-action.tsx index 3c060c08b..32cf6a3f7 100644 --- a/src/renderer/features/context-menu/actions/show-in-file-explorer-action.tsx +++ b/src/renderer/features/context-menu/actions/show-in-file-explorer-action.tsx @@ -2,9 +2,9 @@ import isElectron from 'is-electron'; import { useCallback } from 'react'; import { useTranslation } from 'react-i18next'; +import { resolveSongPath } from '/@/renderer/utils/resolve-song-path'; import { ContextMenu } from '/@/shared/components/context-menu/context-menu'; import { toast } from '/@/shared/components/toast/toast'; -import { resolveSongPath } from '/@/renderer/utils/resolve-song-path'; import { QueueSong, Song } from '/@/shared/types/domain-types'; interface ShowInFileExplorerActionProps {