Skip to content

Commit

Permalink
fix: hide response form behind flag
Browse files Browse the repository at this point in the history
  • Loading branch information
baxen committed Nov 27, 2024
1 parent a726cb3 commit 9f60e31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/desktop/src/components/GooseMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ export default function GooseMessage({ message, metadata, messages, append }: Go
</div>
)}

{/* append false && to turn this off */}
{metadata && (
{/* Currently disabled */}
{false && metadata && (
<div className="flex mb-[16px]">
<GooseResponseForm
message={message.content}
Expand All @@ -56,4 +56,4 @@ export default function GooseMessage({ message, metadata, messages, append }: Go
</div>
</div>
);
}
}

0 comments on commit 9f60e31

Please sign in to comment.