diff options
author | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-24 15:00:36 -0700 |
---|---|---|
committer | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-24 15:00:36 -0700 |
commit | 7e555ecc1b04fed96192d3c68b87cf679993abfa (patch) | |
tree | 5f9ce75c1ad5c4f2c82b23d9f04ae21bd2967f60 /src/view/screens/Notifications.tsx | |
parent | 04468eb1b7cccc6dcee127c7a89d001fa2ea352b (diff) | |
download | voidsky-7e555ecc1b04fed96192d3c68b87cf679993abfa.tar.zst |
fix lint errors
Diffstat (limited to 'src/view/screens/Notifications.tsx')
-rw-r--r-- | src/view/screens/Notifications.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/view/screens/Notifications.tsx b/src/view/screens/Notifications.tsx index df84b541b..67507d009 100644 --- a/src/view/screens/Notifications.tsx +++ b/src/view/screens/Notifications.tsx @@ -98,7 +98,10 @@ export const NotificationsScreen = withAuthRequired( /> {store.me.notifications.hasNewLatest && !store.me.notifications.isRefreshing && ( - <LoadLatestBtn onPress={onPressLoadLatest} label="Load new notifications" /> + <LoadLatestBtn + onPress={onPressLoadLatest} + label="Load new notifications" + /> )} </View> ) |