"feat:enhance-podcast-topic-ai"

This commit is contained in:
ajaysi
2026-03-11 19:09:27 +05:30
parent e472861967
commit 01881bb405
51 changed files with 3627 additions and 218 deletions

View File

@@ -28,6 +28,7 @@ import { useAuth } from '@clerk/clerk-react';
import { styled } from '@mui/material/styles';
import { getSchedulerDashboard, SchedulerDashboardData } from '../api/schedulerDashboard';
import { isBackendCooldownActive, logBackendCooldownSkipOnce } from '../api/client';
// Removed SchedulerStatsCards - metrics moved to header
import SchedulerJobsTree from '../components/SchedulerDashboard/SchedulerJobsTree';
import ExecutionLogsTable from '../components/SchedulerDashboard/ExecutionLogsTable';
@@ -216,6 +217,11 @@ const SchedulerDashboard: React.FC = () => {
return;
}
if (isBackendCooldownActive()) {
logBackendCooldownSkipOnce('SchedulerDashboard');
return;
}
try {
loadingRef.current = !isManualRefresh;
refreshingRef.current = isManualRefresh;