From 32d6a0a0d2695bc978a9c1b8afb9146558d9dd6b Mon Sep 17 00:00:00 2001 From: tamaina Date: Sun, 5 Sep 2021 16:44:42 +0900 Subject: [PATCH] fix lint --- src/server/api/common/read-notification.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/api/common/read-notification.ts b/src/server/api/common/read-notification.ts index 77c775e837..089f90fdab 100644 --- a/src/server/api/common/read-notification.ts +++ b/src/server/api/common/read-notification.ts @@ -31,7 +31,7 @@ export async function readNotificationByQuery( isRead: false }).then(notifications => notifications.map(notification => notification.id)); - return readNotification(userId, notificationIds) + return readNotification(userId, notificationIds); } function postReadAllNotifications(userId: User['id']) {