kaori 4 سال پیش
والد
کامیت
b6927c7f45
1فایلهای تغییر یافته به همراه0 افزوده شده و 3 حذف شده
  1. 0 3
      packages/app/src/components/InAppNotification/InAppNotificationDropdown.tsx

+ 0 - 3
packages/app/src/components/InAppNotification/InAppNotificationDropdown.tsx

@@ -34,8 +34,6 @@ const InAppNotificationDropdown: FC<Props> = (props: Props) => {
     const socket = props.socketIoContainer.getSocket();
     socket.on('notificationUpdated', (data: { userId: string, count: number }) => {
       setCount(data.count);
-      // eslint-disable-next-line no-console
-      console.log('socketData', data);
     });
   };
 
@@ -82,7 +80,6 @@ const InAppNotificationDropdown: FC<Props> = (props: Props) => {
       <DropdownMenu className="px-2" right>
         <InAppNotificationList inAppNotificationData={inAppNotificationData} />
         <DropdownItem divider />
-        {/* TODO: Able to show all notifications by #79317 */}
         <a className="dropdown-item d-flex justify-content-center" href="/me/all-in-app-notifications">See All</a>
       </DropdownMenu>
     </Dropdown>