diff options
author | brian-tagg <brian@tagg.id> | 2021-05-07 14:40:51 -0700 |
---|---|---|
committer | brian-tagg <brian@tagg.id> | 2021-05-07 14:40:51 -0700 |
commit | 86a3b4b1ccc19f6af98f3761ecd20f361ca8fe30 (patch) | |
tree | 827ed0178a43b486fe9f804b02649484875214b4 | |
parent | 8b1cb27a44a1d4f53f0d066002286912a222a9a8 (diff) |
Removed a weird dimensions bug
-rw-r--r-- | src/screens/chat/ChatScreen.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/screens/chat/ChatScreen.tsx b/src/screens/chat/ChatScreen.tsx index 7076db57..68063ba4 100644 --- a/src/screens/chat/ChatScreen.tsx +++ b/src/screens/chat/ChatScreen.tsx @@ -1,7 +1,7 @@ import {useBottomTabBarHeight} from '@react-navigation/bottom-tabs'; import {StackNavigationProp} from '@react-navigation/stack'; import React, {useContext, useEffect} from 'react'; -import {StyleSheet, Dimensions} from 'react-native'; +import {StyleSheet} from 'react-native'; import {SafeAreaView, useSafeAreaInsets} from 'react-native-safe-area-context'; import { Channel, @@ -109,9 +109,6 @@ const ChatScreen: React.FC<ChatScreenProps> = () => { borderTopRightRadius: 10, }, markdown: { - image: { - height: Dimensions.get('screen').height, - }, text: { fontSize: 16, } |