Skip to content
This repository was archived by the owner on Nov 11, 2025. It is now read-only.

Commit 03ce07c

Browse files
committed
feat: fine tuning notifications
1 parent 77c1eed commit 03ce07c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

components/CountDownTimer.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ const CountDownTimer = ({ timerState, showPauseButton, showStopButton }) => {
6262
content: {
6363
title: 'Your Timer is Running',
6464
body: 'Your timer is still running in the background. Tap to open the app.',
65-
priority: Notifications.AndroidNotificationPriority.MAX,
6665
sticky: true,
6766
vibrate: false,
6867
},
@@ -75,7 +74,7 @@ const CountDownTimer = ({ timerState, showPauseButton, showStopButton }) => {
7574
body: 'Your timer has finished! Tap to open the app.',
7675
priority: Notifications.AndroidNotificationPriority.MAX,
7776
sound: bellSound.fileName,
78-
vibrate: [0, 250, 250, 250],
77+
vibrate: true,
7978
},
8079
trigger: { seconds: counter, channelId: 'Bhavana' },
8180
}).then((notificationId) =>

0 commit comments

Comments
 (0)