diff --git a/frontend/src/api/loader/loadChannelAggs.ts b/frontend/src/api/loader/loadChannelAggs.ts deleted file mode 100644 index a479ba6c..00000000 --- a/frontend/src/api/loader/loadChannelAggs.ts +++ /dev/null @@ -1,20 +0,0 @@ -import APIClient from '../../functions/APIClient'; - -export type ChannelAggsType = { - total_items: { - value: number; - }; - total_size: { - value: number; - }; - total_duration: { - value: number; - value_str: string; - }; -}; - -const loadChannelAggs = async (channelId: string) => { - return APIClient(`/api/channel/${channelId}/aggs/`); -}; - -export default loadChannelAggs;