diff options
Diffstat (limited to 'src/models/notification.ts')
| -rw-r--r-- | src/models/notification.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/notification.ts b/src/models/notification.ts index 34629ade0c..3944395baf 100644 --- a/src/models/notification.ts +++ b/src/models/notification.ts @@ -54,7 +54,7 @@ export interface INotification { export const packMany = async ( notifications: any[] ) => { - return (await Promise.all(notifications.map(n => pack(n)))).filter(x => x != null); + return (await Promise.all(notifications.map(n => pack(n)))); }; /** |