Update TablePageTemplate.tsx

This commit is contained in:
alorig
2025-11-09 19:40:35 +05:00
parent b7d9fd43c7
commit 76ec58da0b

View File

@@ -1097,8 +1097,10 @@ export default function TablePageTemplate({
} }
// AI Request Logs Component - DEPRECATED: Now using backend console logging // AI Request Logs Component - DEPRECATED: Now using backend console logging
// function AIRequestLogsSection() { // All AI logging is now handled by backend console logging (ConsoleStepTracker)
// const { logs, clearLogs } = useAIRequestLogsStore(); /*
function AIRequestLogsSection() {
const { logs, clearLogs } = useAIRequestLogsStore();
const [isExpanded, setIsExpanded] = useState(false); const [isExpanded, setIsExpanded] = useState(false);
if (logs.length === 0) { if (logs.length === 0) {
@@ -1360,4 +1362,4 @@ export default function TablePageTemplate({
</div> </div>
); );
} }
*/