diff options
Diffstat (limited to 'src/view/screens/Notifications.tsx')
-rw-r--r-- | src/view/screens/Notifications.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/view/screens/Notifications.tsx b/src/view/screens/Notifications.tsx index 85106f2de..c82e7cc7c 100644 --- a/src/view/screens/Notifications.tsx +++ b/src/view/screens/Notifications.tsx @@ -24,7 +24,6 @@ export const Notifications = ({visible}: ScreenParams) => { notesView?.update() } else { store.nav.setTitle('Notifications') - console.log('Fetching notifications feed') const newNotesView = new NotificationsViewModel(store, {}) setNotesView(newNotesView) newNotesView.setup().then(() => { @@ -38,7 +37,7 @@ export const Notifications = ({visible}: ScreenParams) => { }, [visible, store]) return ( - <View> + <View style={{flex: 1}}> <ViewHeader title="Notifications" /> {notesView && <Feed view={notesView} />} </View> |