Skip to content

Commit

Permalink
Update BaseChat.tsx
Browse files Browse the repository at this point in the history
add App Dev button
  • Loading branch information
PixifyAI authored Jan 8, 2025
1 parent 6dbba40 commit b8890f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/components/chat/BaseChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
<div className="flex flex-col justify-center gap-5">
{!chatStarted && (
<div className="flex justify-center gap-2">
{ImportButtons(importChat)}
{ImportButtons(importChat, sendMessage)}
<GitCloneButton importChat={importChat} />
</div>
)}
Expand All @@ -624,3 +624,4 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
return <Tooltip.Provider delayDuration={200}>{baseChat}</Tooltip.Provider>;
},
);

0 comments on commit b8890f4

Please sign in to comment.