Skip to content

Commit

Permalink
fix: changed error log
Browse files Browse the repository at this point in the history
  • Loading branch information
Molaryy committed Dec 17, 2023
1 parent 542c64d commit 3afe89a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/BreakTime.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const requestNotificationPermission = () => {
if (Notification.permission !== 'granted') {
Notification.requestPermission().then((permission: NotificationPermission) => {
if (permission !== 'granted') {
console.error('Notification permission granted.');
console.error('Notification permission not granted.');
}
});
}
Expand Down

0 comments on commit 3afe89a

Please sign in to comment.