Skip to content

Commit

Permalink
chore: improve code formatting in GitHub notifications rendering files
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed Oct 16, 2024
1 parent 9794bb8 commit 2382c76
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export function setUpNotificationElement(notificationElement: HTMLDivElement, no
<div class="status">${notification.unread ? "🔵" : ""}</div>
`;


notificationElement.addEventListener("click", () => {
try {
const notificationWrapper = notificationElement.parentElement;
Expand Down

0 comments on commit 2382c76

Please sign in to comment.