From 9f01724555ff52b4bdbe1476b7cbe7ac1dd8f56c Mon Sep 17 00:00:00 2001 From: tamaina Date: Mon, 19 Jul 2021 15:09:25 +0900 Subject: [PATCH] fix lint --- src/server/api/endpoints/notifications/read.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/api/endpoints/notifications/read.ts b/src/server/api/endpoints/notifications/read.ts index 6ad413c049..a64b1b5acb 100644 --- a/src/server/api/endpoints/notifications/read.ts +++ b/src/server/api/endpoints/notifications/read.ts @@ -53,5 +53,5 @@ export default define(meta, async (ps, user) => { throw new ApiError(meta.errors.noNotificationRequested); } - return readNotification(user.id, notificationIds) + return readNotification(user.id, notificationIds); });