From 60cf4c7f00c5bc25257dca111d1da9b47ecc8624 Mon Sep 17 00:00:00 2001 From: Caleb Rogers Date: Fri, 19 Jun 2026 23:14:49 +0200 Subject: [PATCH] Remove missed floating file --- frontend/src/api/loader/loadChannelAggs.ts | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 frontend/src/api/loader/loadChannelAggs.ts 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;