From 246e2e107b27b8ab56ff40557f5912927854da1f Mon Sep 17 00:00:00 2001 From: Pratyush Sudhakar Date: Sun, 1 Oct 2023 18:04:50 -0400 Subject: [PATCH] format files --- frontend/src/components/AuthManager/subscribeUser.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/AuthManager/subscribeUser.ts b/frontend/src/components/AuthManager/subscribeUser.ts index bf5367ca..84ce6837 100644 --- a/frontend/src/components/AuthManager/subscribeUser.ts +++ b/frontend/src/components/AuthManager/subscribeUser.ts @@ -59,9 +59,13 @@ const subscribeUser = (userType: string, userId: string) => { .catch((e) => { if (Notification.permission !== 'granted') { // 'Permission was not granted.' - alert('Please allow notifications to receive notifications.'); + alert( + 'Please allow notifications to receive notifications.' + ); } else { - alert('An error ocurred during the subscription process. Please contact the administrator for help.'); + alert( + 'An error ocurred during the subscription process. Please contact the administrator for help.' + ); } }); } else {