diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-11 13:10:05 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-11 13:10:05 -0600 |
commit | 22849fb4fcd9b3acde8711051d74c35b6bb23fdb (patch) | |
tree | 6f980000a39c68849cb5eb1c05880d15a8c86c58 /src/view/screens/Notifications.tsx | |
parent | 486ce26a91fbcda5697ceb2ce8e238037ddfa081 (diff) | |
download | voidsky-22849fb4fcd9b3acde8711051d74c35b6bb23fdb.tar.zst |
Implement trending
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> |