diff --git a/gurubu-client/src/app/components/room/grooming-board/gurubu-ai/gurubu-ai-participant.tsx b/gurubu-client/src/app/components/room/grooming-board/gurubu-ai/gurubu-ai-participant.tsx index f8832a7..d3d4ad3 100644 --- a/gurubu-client/src/app/components/room/grooming-board/gurubu-ai/gurubu-ai-participant.tsx +++ b/gurubu-client/src/app/components/room/grooming-board/gurubu-ai/gurubu-ai-participant.tsx @@ -44,12 +44,12 @@ const GurubuAIParticipant = ({ roomId }: Props) => { throw new Error('Issue key or project key not found'); } - const response = await storyPointService.estimateStoryPoint( - { issueKey, projectKey }, - abortControllerRef.current.signal - ); + // const response = await storyPointService.estimateStoryPoint( + // { issueKey, projectKey }, + // abortControllerRef.current.signal + // ); - return response; + return null; } catch (error: any) { if (error.message === 'Request was cancelled') { return null; @@ -146,49 +146,51 @@ const GurubuAIParticipant = ({ roomId }: Props) => { return null; } - return ( - - } - onClose={handleCloseTooltip} - /> -
-
- GuruBu AI -
-
- GuruBu AI Beta -
-
-
- {isResultShown && aiMessage && !isAnalyzing - ? Number(aiMessage)?.toFixed(0) - : "Thinking..."} -
-
- ); + return null; + + // return ( + // + // } + // onClose={handleCloseTooltip} + // /> + //
+ //
+ // GuruBu AI + //
+ //
+ // GuruBu AI Beta + //
+ //
+ //
+ // {isResultShown && aiMessage && !isAnalyzing + // ? Number(aiMessage)?.toFixed(0) + // : "Thinking..."} + //
+ //
+ // ); }; export default GurubuAIParticipant;