aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-03-04 17:57:20 -0500
committerIvan Chen <ivan@tagg.id>2021-03-04 17:57:20 -0500
commit1132d3399939803ea25f435dd85974432494ebdd (patch)
tree0f325957913455d95143cbbb93b65108d8b0f0c6
parent9ba6dd9a4ac15a92590743f5ee3e32796cc85454 (diff)
added tabs bar gradient that was missing for a long long time
-rw-r--r--src/screens/main/NotificationsScreen.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/screens/main/NotificationsScreen.tsx b/src/screens/main/NotificationsScreen.tsx
index 7a88c5be..74bcf906 100644
--- a/src/screens/main/NotificationsScreen.tsx
+++ b/src/screens/main/NotificationsScreen.tsx
@@ -19,7 +19,7 @@ import {
} from 'react-native';
import {SafeAreaView} from 'react-native-safe-area-context';
import {useDispatch, useSelector} from 'react-redux';
-import {TaggPrompt} from '../../components';
+import {TabsGradient, TaggPrompt} from '../../components';
import {Notification} from '../../components/notifications';
import {
loadUserNotifications,
@@ -212,6 +212,7 @@ const NotificationsScreen: React.FC = () => {
}
/>
</SafeAreaView>
+ <TabsGradient />
</View>
);
};