claude-code-best/src/components/FeedbackSurvey/useFrustrationDetection.ts
2026-03-31 21:40:37 +08:00

10 lines
342 B
TypeScript

// Auto-generated stub — replace with real implementation
export function useFrustrationDetection(
_messages: unknown[],
_isLoading: boolean,
_hasActivePrompt: boolean,
_otherSurveyOpen: boolean,
): { state: 'closed' | 'open'; handleTranscriptSelect: () => void } {
return { state: 'closed', handleTranscriptSelect: () => {} };
}