Move save posts to screens

This commit is contained in:
Elias Nahum
2022-04-14 18:59:48 -04:00
parent 7a90f2d4a8
commit 32bb855d68
6 changed files with 2 additions and 2 deletions

View File

@@ -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;

View File

@@ -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);