Skip to content

Commit

Permalink
Remove approve user button
Browse files Browse the repository at this point in the history
  • Loading branch information
teodorus-nathaniel committed Jul 15, 2024
1 parent f125368 commit 5097c10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/extensions/common/CommonChatItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ export default function CommonChatItem({
<div
className={cx(
'grid items-center gap-2 px-2 pb-1 pt-2',
showApproveButton ? 'grid-flow-col gap-1' : 'grid-cols-1'
showApproveButton ? 'grid-cols-2 gap-1' : 'grid-cols-1'
)}
>
<Button
Expand Down Expand Up @@ -352,7 +352,7 @@ export default function CommonChatItem({
</Button>
{showApproveButton && (
<>
<ApproveUserButton ownerId={ownerId} chatId={chatId} />
{/* <ApproveUserButton ownerId={ownerId} chatId={chatId} /> */}
<ApproveMemeButton messageId={message.id} chatId={chatId} />
</>
)}
Expand Down

0 comments on commit 5097c10

Please sign in to comment.