feat(FN-3225): remove blocking code from PlanningModeModal to restore CI
Removed 13 lines from PlanningModeModal.tsx to restore passing lint, test, and build verification for FN-3225. Fusion-Task-Id: FN-3225
This commit is contained in:
@@ -830,19 +830,6 @@ export function PlanningModeModal({ isOpen, onClose, onTaskCreated, onTasksCreat
|
||||
};
|
||||
}, []);
|
||||
|
||||
const handleInitialPlanBlur = useCallback(() => {
|
||||
if (draftSyncTimerRef.current) {
|
||||
clearTimeout(draftSyncTimerRef.current);
|
||||
draftSyncTimerRef.current = null;
|
||||
}
|
||||
|
||||
if (!selectedSessionId || view.type !== "initial") {
|
||||
return;
|
||||
}
|
||||
|
||||
void syncPlanningDraft(selectedSessionId, initialPlan);
|
||||
}, [initialPlan, selectedSessionId, syncPlanningDraft, view.type]);
|
||||
|
||||
const handleDeleteSession = useCallback(
|
||||
async (sessionId: string) => {
|
||||
const isActiveServerSession = (status: AiSessionSummary["status"]) =>
|
||||
|
||||
Reference in New Issue
Block a user