From d60e70f9cc4fc4fdcd3059776b44c2a92902b2c0 Mon Sep 17 00:00:00 2001 From: bbedward Date: Thu, 12 Feb 2026 23:15:22 -0500 Subject: [PATCH] notifications: fix crash in modal --- quickshell/Modules/Notifications/Center/NotificationCard.qml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/quickshell/Modules/Notifications/Center/NotificationCard.qml b/quickshell/Modules/Notifications/Center/NotificationCard.qml index 8a3d9f5c..a9b4019e 100644 --- a/quickshell/Modules/Notifications/Center/NotificationCard.qml +++ b/quickshell/Modules/Notifications/Center/NotificationCard.qml @@ -341,9 +341,7 @@ Rectangle { Repeater { id: notificationRepeater objectName: "notificationRepeater" - model: ScriptModel { - values: notificationGroup?.notifications?.slice(0, 10) || [] - } + model: notificationGroup?.notifications?.slice(0, 10) || [] delegate: Rectangle { required property var modelData