diff --git a/src/components/common/messaging/attachments/MessageReply.tsx b/src/components/common/messaging/attachments/MessageReply.tsx index 68f50d7b..9512d828 100644 --- a/src/components/common/messaging/attachments/MessageReply.tsx +++ b/src/components/common/messaging/attachments/MessageReply.tsx @@ -192,9 +192,6 @@ export const MessageReply = observer(({ index, channel, id }: Props) => { if ( channel.channel_type === "TextChannel" ) { - console.log( - `/server/${channel.server_id}/channel/${channel._id}/${message._id}`, - ); history.push( `/server/${channel.server_id}/channel/${channel._id}/${message._id}`, ); diff --git a/src/context/Theme.tsx b/src/context/Theme.tsx index 0eed2294..00b19588 100644 --- a/src/context/Theme.tsx +++ b/src/context/Theme.tsx @@ -77,9 +77,6 @@ export interface ThemeOptions { custom?: Partial; } -// import aaa from "@fontsource/open-sans/300.css?raw"; -// console.info(aaa); - export const FONTS: Record void }> = { "Open Sans": { name: "Open Sans", diff --git a/src/context/intermediate/popovers/UserProfile.tsx b/src/context/intermediate/popovers/UserProfile.tsx index bca4f9de..ad03a3f4 100644 --- a/src/context/intermediate/popovers/UserProfile.tsx +++ b/src/context/intermediate/popovers/UserProfile.tsx @@ -195,12 +195,15 @@ export const UserProfile = observer( )} - {(user.relationship === RelationshipStatus.Incoming || - user.relationship === RelationshipStatus.None) && ( - user.addFriend()}> - - - )} + {!user.bot && + (user.relationship === + RelationshipStatus.Incoming || + user.relationship === + RelationshipStatus.None) && ( + user.addFriend()}> + + + )}
{ if (renderer.state === "RENDER") { runInAction(() => (renderer.fetching = true)); - console.log(renderer.scrollAnchored); if (renderer.scrollAnchored) { setScrollState({ type: "ScrollToBottom" }); } else {