diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-06-22 08:44:12 -0700 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-06-22 08:44:12 -0700 |
commit | 706a6c77971a10d8d45d1b3e189eadc28f89841e (patch) | |
tree | 11f1547b1903b94c63614b15206c81cccf6a8b44 /src/screens/main/NotificationsScreen.tsx | |
parent | 4cb6ccf53bc7bf6a6749e9b04c7e1dd057aab56e (diff) |
Fix lint errors
Diffstat (limited to 'src/screens/main/NotificationsScreen.tsx')
-rw-r--r-- | src/screens/main/NotificationsScreen.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/screens/main/NotificationsScreen.tsx b/src/screens/main/NotificationsScreen.tsx index 03842b0a..84c15f66 100644 --- a/src/screens/main/NotificationsScreen.tsx +++ b/src/screens/main/NotificationsScreen.tsx @@ -36,8 +36,9 @@ const NotificationsScreen: React.FC = () => { ); const [refreshing, setRefreshing] = useState(false); // used for figuring out which ones are unread - const [lastViewed, setLastViewed] = - useState<moment.Moment | undefined>(undefined); + const [lastViewed, setLastViewed] = useState<moment.Moment | undefined>( + undefined, + ); const {notifications} = useSelector( (state: RootState) => state.notifications, ); |