Skip to content

Commit

Permalink
feat: apply avatars
Browse files Browse the repository at this point in the history
  • Loading branch information
zugdev committed Dec 8, 2024
1 parent f0ea7d8 commit 88497d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/home/fetch-github/fetch-and-display-previews.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export async function displayNotifications(
return;
}
renderNotifications(notifications, skipAnimation);
//applyAvatarsToIssues();
applyAvatarsToIssues();
}

export async function searchDisplayGitHubIssues({ searchText, skipAnimation = false }: { searchText: string; skipAnimation?: boolean }) {
Expand Down
2 changes: 1 addition & 1 deletion src/home/home.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void (async function home() {
void readyToolbar();
const notifications = await fetchAllNotifications();
if(notifications){
void fetchAvatars(notifications);
await fetchAvatars(notifications);
}
void displayNotifications(notifications);

Expand Down

0 comments on commit 88497d7

Please sign in to comment.