Skip to content

Commit

Permalink
move sources to bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
anish-work committed Jan 9, 2025
1 parent b6a1c9a commit 89241a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/widgets/copilot/components/Messages/IncomingMsg.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,6 @@ const IncomingMsg = memo(
if (!parsedElements) return <ResponseLoader show={true} />;
return (
<div className="gooey-incomingMsg gpb-12 mw-100">
{props.showSources && !!references.length && (
<SourcesSection {...props.data} />
)}
<div className="gpl-16 mw-100">
<BotMessageLayout>
<div
Expand Down Expand Up @@ -134,6 +131,9 @@ const IncomingMsg = memo(
/>
)}
</div>
{props.showSources && !!references.length && (
<SourcesSection {...props.data} />
)}
</div>
);
},
Expand Down

0 comments on commit 89241a5

Please sign in to comment.