diff --git a/src/screens/Compose/Root/Footer/Reply.tsx b/src/screens/Compose/Root/Footer/Reply.tsx index 0f86e146..2f5d7928 100644 --- a/src/screens/Compose/Root/Footer/Reply.tsx +++ b/src/screens/Compose/Root/Footer/Reply.tsx @@ -1,4 +1,5 @@ import TimelineDefault from '@components/Timeline/Default' +import { StyleConstants } from '@utils/styles/constants' import { useTheme } from '@utils/styles/ThemeManager' import React, { useContext } from 'react' import { StyleSheet, View } from 'react-native' @@ -11,16 +12,24 @@ const ComposeReply: React.FC = () => { const { colors } = useTheme() return ( - - + + {replyToStatus ? ( + + ) : null} ) } -const styles = StyleSheet.create({ - base: { - borderTopWidth: StyleSheet.hairlineWidth - } -}) - export default React.memo(ComposeReply, () => true)