Fix crash on wrong disabled prop

This commit is contained in:
Diego Mello 2024-04-02 17:32:08 -03:00
parent 5d0896739d
commit a077dcbf3d
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ const Reply = React.memo(
}
]}
background={Touchable.Ripple(themes[theme].bannerBackground)}
disabled={loading || attachment.message_link}>
disabled={loading || !!attachment.message_link}>
<View style={styles.attachmentContainer}>
<Title attachment={attachment} timeFormat={timeFormat} theme={theme} />
<Description attachment={attachment} getCustomEmoji={getCustomEmoji} theme={theme} />