Skip to content

Commit

Permalink
[FE] CHORE: 가독성 위해 줄바꿈 #1680
Browse files Browse the repository at this point in the history
  • Loading branch information
jnkeniaem committed Oct 31, 2024
1 parent b69f1ab commit 37aa76c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/Cabinet/firebase/firebase-messaging-sw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export const firebaseConfig = {
const app = initializeApp(firebaseConfig);
let messaging: null | Messaging = null;
let isApiSupported = false;

isSupported().then((result) => {
isApiSupported = result;
if (
Expand All @@ -31,7 +32,8 @@ isSupported().then((result) => {
) {
messaging = getMessaging(app);
}
}); // NOTE : 사용자 브라우저가 푸시 알림 기능을 지원하는지 확인
});
// NOTE : 사용자 브라우저가 푸시 알림 기능을 지원하는지 확인

const unsupportedMsg = `사용 중인 환경에서는 푸시 알림 기능이
지원되지 않습니다.
Expand Down

0 comments on commit 37aa76c

Please sign in to comment.