Skip to content

Commit

Permalink
hid stickers (#3135)
Browse files Browse the repository at this point in the history
  • Loading branch information
hkirat authored Mar 3, 2023
1 parent 459340f commit 5e9fab7
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions packages/chat-sdk/src/components/SendMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import { SecureTransfer } from "./SecureTransfer";

const BARTER_ENABLED = false;
const SECURE_TRANSFER_ENABLED = false;
const STICKER_ENABLED = false;

const useStyles = makeStyles((theme: any) =>
createStyles({
Expand Down Expand Up @@ -333,12 +334,14 @@ export const SendMessage = ({
height: "28px",
}}
/>
<NftSticker
buttonStyle={{
height: "28px",
}}
setAboveMessagePlugin={setAboveMessagePlugin}
/>
{STICKER_ENABLED ? (
<NftSticker
buttonStyle={{
height: "28px",
}}
setAboveMessagePlugin={setAboveMessagePlugin}
/>
) : null}
{type === "individual" && BARTER_ENABLED ? (
<Barter
setOpenPlugin={setOpenPlugin}
Expand Down

1 comment on commit 5e9fab7

@vercel
Copy link

@vercel vercel bot commented on 5e9fab7 Mar 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.