From ed7244f5f5b0f96c346a3d83bbf885026a7746b7 Mon Sep 17 00:00:00 2001 From: balibabu Date: Fri, 11 Apr 2025 20:06:58 +0800 Subject: [PATCH] Fix: Delete unused pages (#6973) ### What problem does this PR solve? Fix: Delete unused pages ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- web/src/pages/api/index.tsx | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 web/src/pages/api/index.tsx diff --git a/web/src/pages/api/index.tsx b/web/src/pages/api/index.tsx deleted file mode 100644 index c41ef489..00000000 --- a/web/src/pages/api/index.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import ApiContent from '@/components/api-service/chat-overview-modal/api-content'; - -const ApiPage = () => { - return ( -
- -
- ); -}; - -export default ApiPage;