diff --git a/apps/rowboat/app/projects/[projectId]/playground/components/chat.tsx b/apps/rowboat/app/projects/[projectId]/playground/components/chat.tsx index cdd600c1..a6b2ee86 100644 --- a/apps/rowboat/app/projects/[projectId]/playground/components/chat.tsx +++ b/apps/rowboat/app/projects/[projectId]/playground/components/chat.tsx @@ -350,113 +350,117 @@ export function Chat({ } }, []); - return
-
-
+ return ( +
+
+
-
- - {showUnreadBubble && ( - - )} -
- -
- {showSuccessMessage && ( -
-

Skipper will suggest fixes for you now.

- +
- )} - {showExplainSuccess && ( -
-

Skipper will explain this for you now.

- -
- )} - {fetchResponseError && ( -
-

{fetchResponseError}

- -
- )} + + + )} +
+ {showSuccessMessage && ( +
+

Skipper will suggest fixes for you now.

+ +
+ )} + {showExplainSuccess && ( +
+

Skipper will explain this for you now.

+ +
+ )} + {fetchResponseError && ( +
+

{fetchResponseError}

+ +
+ )} - msg.content !== undefined) as any} - loading={loadingAssistantResponse} - shouldAutoFocus={isLastInteracted} - onFocus={() => setIsLastInteracted(true)} - onCancel={handleStop} + msg.content !== undefined) as any} + loading={loadingAssistantResponse} + shouldAutoFocus={isLastInteracted} + onFocus={() => setIsLastInteracted(true)} + onCancel={handleStop} + /> +
+
+ + setBillingError(null)} + errorMessage={billingError || ''} + /> + setShowFeedbackModal(false)} + onSubmit={handleFeedbackSubmit} + title="Fix Assistant" />
- - - setBillingError(null)} - errorMessage={billingError || ''} - /> - setShowFeedbackModal(false)} - onSubmit={handleFeedbackSubmit} - title="Fix Assistant" - /> -
; + ); } \ No newline at end of file