diff --git a/frontend/src/components/tables/StreamsTable.jsx b/frontend/src/components/tables/StreamsTable.jsx index 37ab86ee..5e68b67b 100644 --- a/frontend/src/components/tables/StreamsTable.jsx +++ b/frontend/src/components/tables/StreamsTable.jsx @@ -3,7 +3,6 @@ import API from '../../api'; import StreamForm from '../forms/Stream'; import usePlaylistsStore from '../../store/playlists'; import useChannelsStore from '../../store/channels'; -import useLogosStore from '../../store/logos'; import { copyToClipboard, useDebounce } from '../../utils'; import { SquarePlus, @@ -67,7 +66,6 @@ const StreamRowActions = ({ (state) => state.channels.find((chan) => chan.id === selectedChannelIds[0])?.streams ); - const fetchLogos = useLogosStore((s) => s.fetchLogos); const addStreamToChannel = async () => { await API.updateChannel({ @@ -250,7 +248,6 @@ const StreamsTable = () => { const channelGroups = useChannelsStore((s) => s.channelGroups); const selectedChannelIds = useChannelsTableStore((s) => s.selectedChannelIds); - const fetchLogos = useChannelsStore((s) => s.fetchLogos); const channelSelectionStreams = useChannelsTableStore( (state) => state.channels.find((chan) => chan.id === selectedChannelIds[0])?.streams @@ -287,15 +284,17 @@ const StreamsTable = () => { grow: true, size: columnSizing.name || 200, cell: ({ getValue }) => ( - - {getValue()} - + + + {getValue()} + + ), }, { @@ -306,15 +305,17 @@ const StreamsTable = () => { : '', size: columnSizing.group || 150, cell: ({ getValue }) => ( - - {getValue()} - + + + {getValue()} + + ), }, { @@ -323,17 +324,17 @@ const StreamsTable = () => { accessorFn: (row) => playlists.find((playlist) => playlist.id === row.m3u_account)?.name, cell: ({ getValue }) => ( - - - {getValue()} - - + + + {getValue()} + + ), }, ],