-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: modify emoji display condition #56
Conversation
@@ -81,7 +81,7 @@ export default function ParsedBotMessageBody(props: Props) { | |||
</BlockContainer> | |||
); | |||
})} | |||
{sources.length > 0 ? ( | |||
{sources.length > 0 && enableSourceMessage ? ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just found that this condition needs to be here not on the above to make it work correctly.
@@ -50,15 +50,15 @@ export const DEFAULT_CONSTANT: Constant = { | |||
], | |||
}, | |||
firstMessageData: [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Disabled this line cause I don't think it's really helpful 😅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LG2M
Addresses https://sendbird.atlassian.net/browse/AC-476
AS-IS
TO-BE