diff options
Diffstat (limited to 'src/view/screens/Notifications.tsx')
-rw-r--r-- | src/view/screens/Notifications.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/view/screens/Notifications.tsx b/src/view/screens/Notifications.tsx index dd6e07611..9b5dc5970 100644 --- a/src/view/screens/Notifications.tsx +++ b/src/view/screens/Notifications.tsx @@ -5,6 +5,7 @@ import {Feed} from '../com/notifications/Feed' import {useStores} from '../../state' import {ScreenParams} from '../routes' import {useOnMainScroll} from '../lib/hooks/useOnMainScroll' +import {s} from '../lib/styles' export const Notifications = ({navIdx, visible}: ScreenParams) => { const store = useStores() @@ -24,14 +25,14 @@ export const Notifications = ({navIdx, visible}: ScreenParams) => { store.me.notifications.updateReadState() }) store.nav.setTitle(navIdx, 'Notifications') - }, [visible, store]) + }, [visible, store, navIdx]) const onPressTryAgain = () => { store.me.notifications.refresh() } return ( - <View style={{flex: 1}}> + <View style={s.h100pct}> <ViewHeader title="Notifications" canGoBack={false} /> <Feed view={store.me.notifications} |