From ceab3fc011e50a0bb62a83f8b6fd1bafbfb3c4d2 Mon Sep 17 00:00:00 2001
From: tamaina <tamaina@hotmail.co.jp>
Date: Mon, 19 Jul 2021 15:09:43 +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);
 });