fix notification icons
This commit is contained in:
parent
92817203fc
commit
509cbb07fe
1 changed files with 2 additions and 2 deletions
|
@ -63,7 +63,7 @@ export default function Notification(props: Props) {
|
|||
let icon;
|
||||
switch (notification_rule) {
|
||||
case NOTIFICATIONS.NOTIFICATION_CREATOR_SUBSCRIBER:
|
||||
icon = <Icon icon={ICONS.SUBSCRIBE} sectionIcon className="notification__icon" />;
|
||||
icon = <Icon icon={ICONS.SUBSCRIBE} sectionIcon />;
|
||||
break;
|
||||
case NOTIFICATIONS.NOTIFICATION_COMMENT:
|
||||
icon = <ChannelThumbnail small uri={notification_parameters.dynamic.comment_author} />;
|
||||
|
@ -79,7 +79,7 @@ export default function Notification(props: Props) {
|
|||
icon = <Icon icon={ICONS.LBC} sectionIcon />;
|
||||
break;
|
||||
default:
|
||||
icon = <Icon icon={ICONS.NOTIFICATION} sectionIcon className="notification__icon" />;
|
||||
icon = <Icon icon={ICONS.NOTIFICATION} sectionIcon />;
|
||||
}
|
||||
|
||||
function handleNotificationClick() {
|
||||
|
|
Loading…
Add table
Reference in a new issue