Revert "api monitors"

This reverts commit 133d63813a.
This commit is contained in:
Desktop
2025-11-15 17:05:40 +05:00
parent 133d63813a
commit efd5ea6b4f
14 changed files with 0 additions and 613 deletions

View File

@@ -5,7 +5,6 @@ import TextArea from '../../components/form/input/TextArea';
import { useToast } from '../../components/ui/toast/ToastContainer';
import { BoltIcon } from '../../icons';
import { fetchAPI } from '../../services/api';
import ApiStatusMonitor from '../../components/debug/ApiStatusMonitor';
interface PromptData {
prompt_type: string;
@@ -428,14 +427,6 @@ export default function Prompts() {
</div>
</div>
</div>
{/* API Status Monitor - Only shows when debug toggle is enabled */}
<ApiStatusMonitor
title="System"
endpoints={[
{ name: 'List Prompts', method: 'GET', endpoint: '/v1/system/prompts/' },
]}
/>
</>
);
}