aboutsummaryrefslogtreecommitdiff
path: root/src/components/comments/CommentsContainer.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@thetaggid.com>2021-03-02 19:16:48 -0500
committerGitHub <noreply@github.com>2021-03-02 19:16:48 -0500
commitd73e99036e5b78a9b7dbcc43e9a87aa6f9c1faeb (patch)
treef505e400a7a0cd5bed9a95c86f90b2b6ddf80782 /src/components/comments/CommentsContainer.tsx
parent791a3a7008cbd861ab1cf1b643d95d3555b3676b (diff)
parent09a9ddcbe1e32b17bd8d7c7519bb41b41e13f837 (diff)
Merge pull request #274 from leonyjiang/hotfix-bad-import-syntax
[Hotfix] Fix Imports Crashing App in Development
Diffstat (limited to 'src/components/comments/CommentsContainer.tsx')
-rw-r--r--src/components/comments/CommentsContainer.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/comments/CommentsContainer.tsx b/src/components/comments/CommentsContainer.tsx
index c72da2b7..3dc8a71c 100644
--- a/src/components/comments/CommentsContainer.tsx
+++ b/src/components/comments/CommentsContainer.tsx
@@ -2,7 +2,7 @@ import React, {useEffect, useRef, useState} from 'react';
import {StyleSheet} from 'react-native';
import {FlatList} from 'react-native-gesture-handler';
import {useDispatch, useSelector} from 'react-redux';
-import {CommentTile} from '.';
+import CommentTile from './CommentTile';
import {getComments} from '../../services';
import {updateReplyPosted} from '../../store/actions';
import {RootState} from '../../store/rootReducer';