diff --git a/config/ags/notifications/handler.tsx b/config/ags/notifications/handler.tsx index 9cce715..0c3182d 100644 --- a/config/ags/notifications/handler.tsx +++ b/config/ags/notifications/handler.tsx @@ -111,10 +111,12 @@ class Notifier implements Subscribable { openNotificationMenu () { // Show all notifications that have not been cleared - this.menuOpen = true; - this.notifications.forEach( ( _, id ) => { - this.show( id ); - } ) + if ( this.notifications.size > 0 ) { + this.menuOpen = true; + this.notifications.forEach( ( _, id ) => { + this.show( id ); + } ) + } } hideNotifications () {