diff options
author | Brian Kim <brian@tagg.id> | 2021-06-09 09:28:38 +0900 |
---|---|---|
committer | Brian Kim <brian@tagg.id> | 2021-06-09 09:28:38 +0900 |
commit | 9d7e900a89f343f7752457956f8e1d205774b910 (patch) | |
tree | 787a56ea804a68f67f708caac0b138b6d262fb87 /src | |
parent | c51c60f034ac8d2324af74fe63118e8c52ac9954 (diff) |
Clean up MomentPostContent
Diffstat (limited to 'src')
-rw-r--r-- | src/components/moments/MomentPostContent.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/components/moments/MomentPostContent.tsx b/src/components/moments/MomentPostContent.tsx index c00433e7..ecbfb3a2 100644 --- a/src/components/moments/MomentPostContent.tsx +++ b/src/components/moments/MomentPostContent.tsx @@ -38,12 +38,10 @@ const MomentPostContent: React.FC<MomentPostContentProps> = ({ const [elapsedTime, setElapsedTime] = useState(''); const [comments_count, setCommentsCount] = useState(''); const [tags, setTags] = useState<MomentTagType[]>(momentTags); - // const [visible, setVisible] = useState(false); const state: RootState = useStore().getState(); const navigation = useNavigation(); const dispatch = useDispatch(); const imageRef = useRef(null); - // const [fadeValue, setFadeValue] = useState(new Animated.Value(0)); const [visible, setVisible] = useState(false); const [fadeValue, setFadeValue] = useState<Animated.Value<number>>( |