aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/notifications')
-rw-r--r--src/components/notifications/NotificationPill.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/notifications/NotificationPill.tsx b/src/components/notifications/NotificationPill.tsx
index 01622a6f..525cd7fa 100644
--- a/src/components/notifications/NotificationPill.tsx
+++ b/src/components/notifications/NotificationPill.tsx
@@ -75,12 +75,12 @@ export const NotificationPill: React.FC<NotificationPillProps> = ({
}, 100);
}, [notificationSets, iconRef, tipRef]);
- // Used so that pill disappears after 5 seconds
+ // Used so that pill disappears after 10 seconds
useEffect(() => {
if (timeCount) {
setTimeout(() => {
setTimeOut(true);
- }, 5000);
+ }, 10000);
}
}, [timeCount]);