瀏覽代碼

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]);
     };