Skip to content

Commit

Permalink
Merge pull request #402 from upfluence/oc/VEL-3603
Browse files Browse the repository at this point in the history
fix: removed instance of upf-icon
  • Loading branch information
OwenCoogan authored Nov 8, 2024
2 parents aee2154 + 63f0567 commit eda17ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon/activity-notifier/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Configuration from '@upfluence/ember-upf-utils/configuration';

const notificationMessage = function (message) {
return {
title: `<i class="toast-title__icon upf-icon upf-icon--messages"></i>`,
title: `<i class='toast-title__icon fas fa-message-dots'></i>`,
message: message,
type: 'info'
};
Expand All @@ -24,7 +24,7 @@ const notificationErrorMessage = function (message) {
const notificationMessageWithAvatar = function (avatarUrl, message) {
return {
title: `<img class="toast-title__avatar" src="${avatarUrl}" />
<i class="toast-title__icon upf-icon upf-icon--messages"></i>`,
<i class='toast-title__icon fas fa-message-dots'></i>`,
message: message,
type: 'info'
};
Expand Down

0 comments on commit eda17ad

Please sign in to comment.