diff --git a/extensions/suspend/js/src/forum/components/UserSuspendedNotification.js b/extensions/suspend/js/src/forum/components/UserSuspendedNotification.js index cb0f91895..228f26778 100644 --- a/extensions/suspend/js/src/forum/components/UserSuspendedNotification.js +++ b/extensions/suspend/js/src/forum/components/UserSuspendedNotification.js @@ -1,10 +1,8 @@ import Notification from 'flarum/components/Notification'; -import username from 'flarum/helpers/username'; -import humanTime from 'flarum/helpers/humanTime'; export default class UserSuspendedNotification extends Notification { icon() { - return 'ban'; + return 'fas fa-ban'; } href() { diff --git a/extensions/suspend/js/src/forum/components/UserUnsuspendedNotification.js b/extensions/suspend/js/src/forum/components/UserUnsuspendedNotification.js index 31bcb5ce1..55ab43b16 100644 --- a/extensions/suspend/js/src/forum/components/UserUnsuspendedNotification.js +++ b/extensions/suspend/js/src/forum/components/UserUnsuspendedNotification.js @@ -1,10 +1,8 @@ import Notification from 'flarum/components/Notification'; -import username from 'flarum/helpers/username'; -import humanTime from 'flarum/helpers/humanTime'; export default class UserUnsuspendedNotification extends Notification { icon() { - return 'ban'; + return 'fas fa-ban'; } href() {