Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
Princesseuh committed Jan 22, 2024
1 parent 9a881fe commit b99c1be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ document.addEventListener('DOMContentLoaded', async () => {

const iconContainer = document.createElement('div');
const iconElement = document.createElement('template');
iconElement.innerHTML = getAppIcon(app.icon);
iconElement.innerHTML = app.icon ? getAppIcon(app.icon) : '?';
iconContainer.append(iconElement.content.cloneNode(true));

const notification = document.createElement('div');
Expand Down

0 comments on commit b99c1be

Please sign in to comment.