소스 검색

improve comments

kaori 4 년 전
부모
커밋
f315d5a4ae
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      packages/app/src/components/InAppNotification/InAppNotificationPage.tsx

+ 2 - 2
packages/app/src/components/InAppNotification/InAppNotificationPage.tsx

@@ -55,9 +55,9 @@ const InAppNotificationPageBody: FC<Props> = (props) => {
 
     const updateUnopendNotificationStatusesToOpened = async() => {
       await apiv3Put('/in-app-notification/all-statuses-open');
-      // mutate 'UNREAD' Category
+      // mutate notification statuses in 'UNREAD' Category
       mutate(['/in-app-notification/list', limit, offset, categoryStatus]);
-      // mutate 'ALL' Category
+      // mutate notification statuses in 'ALL' Category
       mutate(['/in-app-notification/list', limit, offset, undefined]);
     };