diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-06-09 17:41:29 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-09 17:41:29 -0400 |
| commit | d13d12980555cb1f659ae5108c52f089a54c3f57 (patch) | |
| tree | 145098b27611a955d40118046e275a6ae940d969 /src/components/moments/MomentPostContent.tsx | |
| parent | 587d08dc8f0508b6efa76cc7d57f21ac2a5fd9fb (diff) | |
| parent | 93796732be3f5070c0a124d29533396f79736c83 (diff) | |
Merge pull request #456 from brian-tagg/tma872-purple-indicator
[TMA-872] purple indicator
Diffstat (limited to 'src/components/moments/MomentPostContent.tsx')
| -rw-r--r-- | src/components/moments/MomentPostContent.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/moments/MomentPostContent.tsx b/src/components/moments/MomentPostContent.tsx index 4a1f3894..ecbfb3a2 100644 --- a/src/components/moments/MomentPostContent.tsx +++ b/src/components/moments/MomentPostContent.tsx @@ -35,12 +35,12 @@ const MomentPostContent: React.FC<MomentPostContentProps> = ({ style, momentTags, }) => { - const state: RootState = useStore().getState(); - const navigation = useNavigation(); - const dispatch = useDispatch(); const [elapsedTime, setElapsedTime] = useState(''); const [comments_count, setCommentsCount] = useState(''); const [tags, setTags] = useState<MomentTagType[]>(momentTags); + const state: RootState = useStore().getState(); + const navigation = useNavigation(); + const dispatch = useDispatch(); const imageRef = useRef(null); const [visible, setVisible] = useState(false); |
