We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 867d299 commit 2b02a9aCopy full SHA for 2b02a9a
src/renderer/utils/notifications/notifications.ts
@@ -167,10 +167,10 @@ export function stabilizeNotificationsOrder(
167
// Non-repository grouping: assign sequential order across all notifications
168
let orderIndex = 0;
169
170
- notifications.forEach((accountNotifications) => {
171
- accountNotifications.notifications.forEach((notification) => {
+ for (const accountNotifications of notifications) {
+ for (const notification of accountNotifications.notifications) {
172
notification.order = orderIndex++;
173
- });
174
+ }
175
}
176
0 commit comments