File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import TopicRow from './TopicRow';
1313const { width } = Dimensions . get ( 'window' ) ;
1414
1515
16- class UserTopicPage extends Component {
16+ class UserTopicList extends Component {
1717 constructor ( props ) {
1818 super ( props ) ;
1919 this . ds = new ListView . DataSource ( { rowHasChanged : ( r1 , r2 ) => r1 !== r2 } ) ;
@@ -112,4 +112,4 @@ var styles = StyleSheet.create({
112112} ) ;
113113
114114
115- export default UserTopicPage ;
115+ export default UserTopicList ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import React,{
1212import moment from 'moment' ;
1313import ScrollableTabView from 'react-native-scrollable-tab-view' ;
1414import Icon from 'react-native-vector-icons/Ionicons' ;
15- import UserTopicPage from '../components/UserTopicPage ' ;
15+ import UserTopicPage from '../components/UserTopicList ' ;
1616import TabBar from '../components/TabBar' ;
1717import Spinner from '../components/base/Spinner' ;
1818import Return from '../components/base/Return' ;
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ import Toast from '../components/base/Toast';
1010class Utils extends Component {
1111 componentDidMount ( ) {
1212 const { actions } = this . props ;
13- // actions.getUserFromStorage(()=> {
14- // actions.getUnreadMessageCount();
15- // });
13+ actions . getUserFromStorage ( ( ) => {
14+ actions . getUnreadMessageCount ( ) ;
15+ } ) ;
1616 }
1717
1818
You can’t perform that action at this time.
0 commit comments