Removed functionality not implemented

This commit is contained in:
Nick Sandstrom 2026-01-27 13:41:50 -08:00
parent cf1625fab9
commit 525ae60157
3 changed files with 0 additions and 29 deletions

View file

@ -702,8 +702,6 @@ const StreamsTable = ({ onReady }) => {
channel_profile_ids: channelProfileIds,
});
await API.requeryChannels();
const fetchLogos = useChannelsStore.getState().fetchLogos;
fetchLogos();
};
// Handle confirming the single channel numbering modal

View file

@ -72,9 +72,6 @@ const useLogosStore = create((set, get) => ({
// Smart loading methods
fetchLogos: async (pageSize = 100) => {
// Don't fetch if logo fetching is not allowed yet
if (!get().allowLogoFetching) return [];
set({ isLoading: true, error: null });
try {
const response = await api.getLogos({ page_size: pageSize });

View file

@ -213,30 +213,6 @@ const useVODStore = create((set, get) => ({
}
},
fetchSeriesEpisodes: async (seriesId) => {
set({ loading: true, error: null });
try {
const response = await api.getSeriesEpisodes(seriesId);
set((state) => ({
episodes: {
...state.episodes,
...response.reduce((acc, episode) => {
acc[episode.id] = episode;
return acc;
}, {}),
},
loading: false,
}));
return response;
} catch (error) {
console.error('Failed to fetch series episodes:', error);
set({ error: 'Failed to load episodes.', loading: false });
throw error; // Re-throw to allow calling component to handle
}
},
fetchMovieDetails: async (movieId) => {
set({ loading: true, error: null });
try {