Move save posts to screens
This commit is contained in:
parent
7a90f2d4a8
commit
32bb855d68
6 changed files with 2 additions and 2 deletions
|
|
@ -7,7 +7,7 @@ import {DeviceEventEmitter} from 'react-native';
|
|||
import {Events, Screens} from '@constants';
|
||||
import CustomStatus from '@screens/custom_status';
|
||||
import EditProfile from '@screens/edit_profile';
|
||||
import SavedPosts from '@screens/home/saved_posts';
|
||||
import SavedPosts from '@screens/saved_posts';
|
||||
|
||||
type SelectedView = {
|
||||
id: string;
|
||||
|
|
|
|||
|
|
@ -140,7 +140,7 @@ Navigation.setLazyComponentRegistrator((screenName) => {
|
|||
screen = withServerDatabase(require('@screens/reactions').default);
|
||||
break;
|
||||
case Screens.SAVED_POSTS:
|
||||
screen = withServerDatabase((require('@screens/home/saved_posts').default));
|
||||
screen = withServerDatabase((require('@screens/saved_posts').default));
|
||||
break;
|
||||
case Screens.SSO:
|
||||
screen = withIntl(require('@screens/sso').default);
|
||||
|
|
|
|||
Loading…
Reference in a new issue