diff --git a/src/home/rendering/github-notifications/render-github-notifications.ts b/src/home/rendering/github-notifications/render-github-notifications.ts index d7a398af..04613106 100644 --- a/src/home/rendering/github-notifications/render-github-notifications.ts +++ b/src/home/rendering/github-notifications/render-github-notifications.ts @@ -21,7 +21,7 @@ export async function renderGitHubNotifications() { } // Filter for unread notifications - const unreadNotifications = notifications.filter(notification => !notification.unread); + const unreadNotifications = notifications.filter((notification) => !notification.unread); const processedNotifications = await processNotifications(unreadNotifications, octokit); diff --git a/src/home/rendering/github-notifications/set-up-notification-element.ts b/src/home/rendering/github-notifications/set-up-notification-element.ts index 77302937..7c605059 100644 --- a/src/home/rendering/github-notifications/set-up-notification-element.ts +++ b/src/home/rendering/github-notifications/set-up-notification-element.ts @@ -33,7 +33,6 @@ export function setUpNotificationElement(notificationElement: HTMLDivElement, no