diff options
author | Ivan Chen <ivan@tagg.id> | 2021-06-23 17:41:34 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-06-23 17:41:56 -0400 |
commit | 9d2c37f4da7799cced20f193faccaa2a50e77aa6 (patch) | |
tree | c1950104361129e8e220b986c45bab6303731087 /src | |
parent | 0cce1d3044bc6d452e525c1f1554595edf5c136a (diff) |
Fix bad merge
Diffstat (limited to 'src')
-rw-r--r-- | src/components/moments/MomentPostContent.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/moments/MomentPostContent.tsx b/src/components/moments/MomentPostContent.tsx index 8615a332..7dd6ddc9 100644 --- a/src/components/moments/MomentPostContent.tsx +++ b/src/components/moments/MomentPostContent.tsx @@ -3,6 +3,7 @@ import React, {useContext, useEffect, useRef, useState} from 'react'; import {Image, StyleSheet, Text, View, ViewProps} from 'react-native'; import {TouchableWithoutFeedback} from 'react-native-gesture-handler'; import Animated, {EasingNode} from 'react-native-reanimated'; +import {createIconSetFromFontello} from 'react-native-vector-icons'; import Video from 'react-native-video'; import {useDispatch, useStore} from 'react-redux'; import {MomentContext} from '../../screens/profile/IndividualMoment'; @@ -82,6 +83,7 @@ const MomentPostContent: React.FC<MomentPostContentProps> = ({ setHideText(false); } }, [keyboardVisible, hideText]); + console.log(tags); return ( <View style={[styles.container, style]}> <TouchableWithoutFeedback @@ -124,7 +126,7 @@ const MomentPostContent: React.FC<MomentPostContentProps> = ({ /> )} </TouchableWithoutFeedback> - {visible && !isVideo && ( + {visible && ( <Animated.View style={[styles.tapTag, {opacity: fadeValue}]}> <MomentTags editing={false} |